Literature DB >> 16844986

DISULFIND: a disulfide bonding state and cysteine connectivity prediction server.

Alessio Ceroni1, Andrea Passerini, Alessandro Vullo, Paolo Frasconi.   

Abstract

DISULFIND is a server for predicting the disulfide bonding state of cysteines and their disulfide connectivity starting from sequence alone. Optionally, disulfide connectivity can be predicted from sequence and a bonding state assignment given as input. The output is a simple visualization of the assigned bonding state (with confidence degrees) and the most likely connectivity patterns. The server is available at http://disulfind.dsi.unifi.it/.

Entities:  

Mesh:

Substances:

Year:  2006        PMID: 16844986      PMCID: PMC1538823          DOI: 10.1093/nar/gkl266

Source DB:  PubMed          Journal:  Nucleic Acids Res        ISSN: 0305-1048            Impact factor:   16.971


INTRODUCTION

Disulfide bridges play a major role in the stabilization of the folding process and, consequently, in studies related to structural and functional properties of specific proteins. In addition, knowledge about the disulfide bonding state of cysteines may help the experimental structure determination process and may be useful in other genomic annotation tasks. DISULFIND uses a combination of machine learning algorithms to predict intrachain bridges from sequence alone. Similar to many other tools of this kind, it solves the prediction problem in two steps. First, the disulfide bonding state of each cysteine is predicted by a binary classifier; second, cysteines that are known to participate in the formation of bridges are paired to obtain a connectivity pattern.

RELATED WORKS

Early work on bonding state employed representations based on local-window multiple alignment profiles and neural networks for discrimination (1,2). Mucchielli–Giorgi et al. (3) introduced the idea of adding a global descriptor to improve prediction accuracy. Ceroni et al. (4) proposed a method based on a combination of string and vector kernels in conjunction with support vector machines (SVMs). Song et al. (5) applied a linear discriminant using dipeptides as features. Martelli et al. (6) suggested the use of hidden Markov models to refine local predictions obtained via neural networks. SVMs are also used in the method presented in (7). Prediction of connectivity patterns was pioneered in (8) with a method based on weighted graph matching, implemented in the prediction server DCON. Vullo and Frasconi (9) introduced the use of multiple alignment profiles by means of recursive neural networks (RNNs). In this approach, (that still underpins DISULFIND) a global score is assigned to an entire connectivity pattern. In the DAG RNN approach described in (7,10), the probability for a disulfide bond is computed for each pair of cysteines. The associated DIpro server (which also predicts bonding state) is described in (11). Taskar et al. (12) formulated disulfide connectivity as a structured-output prediction problem and solved it using a generalized large-margin machine. Ferrè and Clote (13) proposed a feedforward neural-network architecture with hidden units associated with cysteine pairs and inputs encoding secondary structure; the method is behind the prediction server DiANNA (14). Zhao et al. (15) confirmed that the profile of distances between bonded cysteines is an important feature for prediction of connectivity patterns. This idea has been further exploited in conjunction with SVMs to develop the method behind the prediction server PreCys (16). Finally, CysView (17) is a server that predict patterns by comparison of a query sequence to annotated data bases.

MATERIALS AND METHODS

Multiple alignment profiles

Prediction of protein structural properties is typically more accurate when incorporating evolutionary information encoded in multiple alignment profiles. Profiles are used in DISULFIND both in bonding state and connectivity prediction. They are calculated by using one iteration of the PSI-BLAST program run on Swiss-Prot and TrEMBL using the BLOSUM62 matrix and an E-value cutoff of 0.005.

Prediction of disulfide bonding state

DISULFIND employs an SVM binary classifier to predict the bonding state of each cysteine, followed by a refinement stage that classifies all the cysteines in a chain in a collective fashion (18), that is, by deciding the overall bonding state assignment of an entire chain rather than making several independent predictions (one for each cysteine). The overall architecture is shown in Figure 1. The SVM receives as input both local and global features [see also (3)]. Local features consist of a window of position specific conservations derived from multiple alignment, centered around the target residue. Global features (amino acid composition, chain length, number of cysteines and average cysteine conservation) provide information about the bonding class of the entire chain (all cysteines bonded, none or mix), which is strongly correlated with the subcellular compartment where the protein resides (reducing versus oxidizing environments).
Figure 1

Architecture of the bonding state predictor. The lower level provides independent cysteine predictions based on a local kernel k on local attributes, and a global kernel k on the entire sequence. The upper level is a BRNN (represented here schematically by its graphical model) that outputs a disulfide-bonding probability p(d) for each cysteine, based on all SVM predictions.

The refinement stage is motivated by the observation that single cysteines are not independently sampled. Linkage occurs between pairs forming a disulfide bridge but also among sets of cysteines that coordinate a metal ion. A second source of linkage is due to the fact that bonding state is very often a global property of the protein chain and not a local property of individual cysteines (2,3). The effects of correlation are mitigated in two ways. First, we trained a bidirectional recurrent neural network (BRNN) (19) to predict a globally correct sequence of bonding state assignments, given a (possibly incorrect) sequence of locally calculated predictions. At each cysteine position i, the BRNN output is computed using the logistic function and can be therefore interpreted as the conditional probability p(d) that the cysteine is disulfide-bonded given the input sequence. A position-specific prediction confidence is then defined as Second, we enforce the number of bonded cysteines to be even (interchain bridges are ignored) using a finite state automaton (shown in Figure 2). Given the sequence of bonding state probabilities (computed by the BRNN), the most likely sequence of bonding states is obtained by running a Viterbi algorithm. Similar ideas (but using a hidden Markov models rather than an automaton) were presented in (6).
Figure 2

Finite state automaton used in the final stage of bonding state prediction.

Prediction of disulfide connectivity

We assume in this subsection that disulfide-bonding state of cysteines is given (either entered manually by the user or predicted using the method described above). The method used in DISULFIND is fully detailed in (9) and briefly summarized here. A connectivity pattern can be conveniently represented as an undirected graph whose vertices are cysteines and edges are disulfide bridges. The problem thus consists of mapping an input sequence with annotated cysteines into an output graphs representing disulfide connectivity. This structured output prediction problem can be cast in the traditional supervised learning setting by introducing a regression problem defined as follows. The input is formed by the annotated sequence and a candidate connectivity pattern. The target is a real valued score, defined as the fraction of correctly assigned bridges. During training the target score is known and we use it to train a recursive neural network in regression mode. Prediction is carried out by running the trained network on all possible connectivity patterns and choosing the one yielding maximum score. The number of possible disulfide patterns connecting 2B cysteines is (2B−1)!! where the double factorial n!! is defined as the product of all odd integers that are less or equal to n. In order to limit computational efforts, DISULFIND can assign at most five disulfide bridges (in this case the number of candidates to be evaluated is 945). Two remarks are relevant to this limitation. First, chains with more than five bridges are rare (no more than 10% of the Swiss-Prot chains annotated with disulfide bridges). Second, the prediction accuracy is already lowfor chains having five bridges because of a limited number of available training examples; hence prediction of patterns with six or more bridges would be very inaccurate.

IMPLEMENTATION

DISULFINDis available both as a standalone service at and as part of PredictProtein (20). The current version (DISULFIND 1.1, released in February 2006), incorporates some improvements in the presentation interface.

Interface

The input to the predictor is entered via an HTTP form using the SEND method. The main fields (see Figure 3) are the following.
Figure 3

Screenshot of the DISULFIND input form.

Email address The address were results will be sent if the email output option is selected. Query name An optional field that allows to label the sequence with an user provided identifier. Amino acid sequence The protein sequence using standard amino acid one-letter codes. Spaces and newlines are automatically stripped. Predict options In its normal behavior, DISULFIND predicts both bonding state and connectivity. If the bonding state is known in advance, users may check the corresponding option in the user interface and after the form is submitted they will be presented a screen where the bonding state of each cysteine can be manually assigned. In this case only predicted connectivity will be returned. Output options There are two possible output operation modes. In email mode, after the form is submitted, a job is scheduled in the server and results are returned in ASCII format to the indicated email address. In browser mode, results are returned to the HTTP client (see Figure 4).
Figure 4

DISULFIND output.

Alternatives By default DISULFIND only returns the most likely connectivity pattern. By setting the number of alternatives to an integer k in the range (1,3), the k best ranking patterns will be returned. The output presented to the user consists of the original sequence annotated with predictions as shown in Figure 4. The following items are returned in the output screen: AA The original amino acid sequence; DB_state Predicted disulfide bonding state (1 = disulfide bonded, 0 = not disulfide bonded); DB_conf Confidence of disulfide bonding state prediction (0 = low to 9 = high); a red color means that the Viterbi aligner overruled the SVM predition for that residue in order to achieve a consistent prediction at the chain level (i.e. an even number of disulfide bonded cysteines, as interchain bonds are ignored); Conn_conf Confidence of connectivity assignment given the predicted disulfide bonding state. The confidence in this case is the predicted score associated with the connectivity pattern, i.e. the fraction of correcly assigned bridges—see details in (9). Although the score is a number in (0,1), it should not be confused with the probability that the pattern is correct. The above output is repeated if multiple alternative patterns are requested. Since all the alternatives share the same bonding state prediction, fields DB_state and DB_conf are only shown in the output presentation of the most likely pattern.

Performance

Under regular load conditions, a query can be answered in about 30–60 s. CPU time depends on the sequence length and the number of disulfide bridges. Most CPU time is used by PSI-BLAST for calculation of multiple alignment profiles. The 20-fold cross validation performance of the bonding state prediction stage is reported in Table 1. In order to assess the significance of the confidence score (see Equation 1), we report in Figure 5 the accuracy and rejection rate of the bonding state classifier that abstains when the confidence is lower or equal to a given cutoff. It can be seen, for example, that accuracy improves to Q2 = 92.7% at a rejection rate of 15.0% for a confidence cutoff of 0.5.
Table 1

DISULFIND bonding state predictor: experimental results on a 20-fold cross validation procedure (PDB Select July 2005)

MethodQ2Qp
Loc2986 ± 173 ± 2
BRNN Loc29+f88 ± 182 ± 2
BRNN Loc29+f FSA88 ± 183 ± 2
Figure 5

Accuracy versus rejection rate of the abstaining bonding state predictor for different confidence cutoff values (the rejection rate is the fraction of cysteines that are predicted at a confidence level below the cutoff value shown at the right of each point in the curve).

Concerning disulfide connectivity, leave-one-out estimates of prediction accuracy on a set of 446 Swiss-Prot Sequences (9) are reported in Table 2 [note that results reported in (9) were based on a 4-fold cross validation]. Q is the fraction of correctly assigned patterns, while Q is the fraction of correctly predicted bridges. If multiple alternative are selected, the probability that a correct pattern is included increases. Results obtained considering the top k = 3 configurations are Q = 66.3, Q = 69.5.
Table 2

Leave-one-out validation results of disulphide connectity prediction

Number of bridgesNumber of chainsQpQc
215675.075.0
314646.655.7
49950.563.4
54517.842.7
All44654.560.2

Statistics

DISULFIND has served a total of over 7000 tasks from almost 50 national domains since April 2003 and is currently serving an average of 60 queries per week. Hundreds of queries per month have been served via PredictProtein since July 2004.
  16 in total

1.  Role of evolutionary information in predicting the disulfide-bonding state of cysteine in proteins.

Authors:  P Fariselli; P Riccobelli; R Casadio
Journal:  Proteins       Date:  1999-08-15

2.  Exploiting the past and the future in protein secondary structure prediction.

Authors:  P Baldi; S Brunak; P Frasconi; G Soda; G Pollastri
Journal:  Bioinformatics       Date:  1999-11       Impact factor: 6.937

3.  Prediction of disulfide connectivity in proteins.

Authors:  P Fariselli; R Casadio
Journal:  Bioinformatics       Date:  2001-10       Impact factor: 6.937

4.  Predicting the disulfide bonding state of cysteines using protein descriptors.

Authors:  M H Mucchielli-Giorgi; S Hazout; P Tufféry
Journal:  Proteins       Date:  2002-02-15

5.  CysView: protein classification based on cysteine pairing patterns.

Authors:  Johann Lenffer; Paulo Lai; Wafaa El Mejaber; Asif M Khan; Judice L Y Koh; Paul T J Tan; Seng H Seah; Vladimir Brusic
Journal:  Nucleic Acids Res       Date:  2004-07-01       Impact factor: 16.971

6.  The PredictProtein server.

Authors:  Burkhard Rost; Guy Yachdav; Jinfeng Liu
Journal:  Nucleic Acids Res       Date:  2004-07-01       Impact factor: 16.971

7.  Large-scale prediction of disulphide bridges using kernel methods, two-dimensional recursive neural networks, and weighted graph matching.

Authors:  Jianlin Cheng; Hiroto Saigo; Pierre Baldi
Journal:  Proteins       Date:  2006-03-15

8.  Prediction of the disulfide-bonding state of cysteines in proteins based on dipeptide composition.

Authors:  Jiang-Ning Song; Ming-Lei Wang; Wei-Jiang Li; Wen-Bo Xu
Journal:  Biochem Biophys Res Commun       Date:  2004-05-21       Impact factor: 3.575

9.  Prediction of disulfide-bonded cysteines in proteomes with a hidden neural network.

Authors:  Pier Luigi Martelli; Piero Fariselli; Rita Casadio
Journal:  Proteomics       Date:  2004-06       Impact factor: 3.984

10.  Disulfide connectivity prediction using recursive neural networks and evolutionary information.

Authors:  Alessandro Vullo; Paolo Frasconi
Journal:  Bioinformatics       Date:  2004-01-22       Impact factor: 6.937

View more
  113 in total

1.  High-yield production, refolding and a molecular modelling of the catalytic module of (1,3)-beta-D-glucan (curdlan) synthase from Agrobacterium sp.

Authors:  Maria Hrmova; Bruce A Stone; Geoffrey B Fincher
Journal:  Glycoconj J       Date:  2010-05-16       Impact factor: 2.916

2.  Molecular cloning and homology modelling of a subtilisin-like serine protease from the marine fungus, Engyodontium album BTMFS10.

Authors:  C Jasmin; Sreeja Chellappan; Rajeev K Sukumaran; K K Elyas; Sarita G Bhat; M Chandrasekaran
Journal:  World J Microbiol Biotechnol       Date:  2010-01-10       Impact factor: 3.312

3.  155R is a novel structural protein of bovine adenovirus type 3, but it is not essential for virus replication.

Authors:  Ahmed O Hassan; Sai V Vemula; Anurag Sharma; Dinesh S Bangari; Krishna K Mishra; Suresh K Mittal
Journal:  J Gen Virol       Date:  2017-04-27       Impact factor: 3.891

Review 4.  Multifactorial level of extremostability of proteins: can they be exploited for protein engineering?

Authors:  Debamitra Chakravorty; Mohd Faheem Khan; Sanjukta Patra
Journal:  Extremophiles       Date:  2017-03-10       Impact factor: 2.395

5.  Oligomerization of the reversibly glycosylated polypeptide: its role during rice plant development and in the regulation of self-glycosylation.

Authors:  Verónica De Pino; Cristina Marino Busjle; Silvia Moreno
Journal:  Protoplasma       Date:  2012-02-25       Impact factor: 3.356

6.  Interleukin (IL)-2 Is a Key Regulator of T Helper 1 and T Helper 2 Cytokine Expression in Fish: Functional Characterization of Two Divergent IL2 Paralogs in Salmonids.

Authors:  Tiehui Wang; Yehfang Hu; Eakapol Wangkahart; Fuguo Liu; Alex Wang; Eman Zahran; Kevin R Maisey; Min Liu; Qiaoqing Xu; Mónica Imarai; Christopher J Secombes
Journal:  Front Immunol       Date:  2018-07-26       Impact factor: 7.561

Review 7.  Proteomic approaches to quantify cysteine reversible modifications in aging and neurodegenerative diseases.

Authors:  Liqing Gu; Renã A S Robinson
Journal:  Proteomics Clin Appl       Date:  2016-11-11       Impact factor: 3.494

8.  Prediction of reversibly oxidized protein cysteine thiols using protein structure properties.

Authors:  Ricardo Sanchez; Megan Riddle; Jongwook Woo; Jamil Momand
Journal:  Protein Sci       Date:  2008-03       Impact factor: 6.725

9.  DBCP: a web server for disulfide bonding connectivity pattern prediction without the prior knowledge of the bonding state of cysteines.

Authors:  Hsuan-Hung Lin; Lin-Yu Tseng
Journal:  Nucleic Acids Res       Date:  2010-06-08       Impact factor: 16.971

10.  Identification of novel aspartic proteases from Strongyloides ratti and characterisation of their evolutionary relationships, stage-specific expression and molecular structure.

Authors:  Luciane V Mello; Helen O'Meara; Daniel J Rigden; Steve Paterson
Journal:  BMC Genomics       Date:  2009-12-16       Impact factor: 3.969

View more

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