Skip to main content
Nucleic Acids Research logoLink to Nucleic Acids Research
. 2020 Apr 23;48(W1):W140–W146. doi: 10.1093/nar/gkaa275

MusiteDeep: a deep-learning based webserver for protein post-translational modification site prediction and visualization

Duolin Wang 1,2, Dongpeng Liu 3, Jiakang Yuchi 4, Fei He 5,6, Yuexu Jiang 7,8, Siteng Cai 9, Jingyi Li 10, Dong Xu 11,12,
PMCID: PMC7319475  PMID: 32324217

Abstract

MusiteDeep is an online resource providing a deep-learning framework for protein post-translational modification (PTM) site prediction and visualization. The predictor only uses protein sequences as input and no complex features are needed, which results in a real-time prediction for a large number of proteins. It takes less than three minutes to predict for 1000 sequences per PTM type. The output is presented at the amino acid level for the user-selected PTM types. The framework has been benchmarked and has demonstrated competitive performance in PTM site predictions by other researchers. In this webserver, we updated the previous framework by utilizing more advanced ensemble techniques, and providing prediction and visualization for multiple PTMs simultaneously for users to analyze potential PTM cross-talks directly. Besides prediction, users can interactively review the predicted PTM sites in the context of known PTM annotations and protein 3D structures through homology-based search. In addition, the server maintains a local database providing pre-processed PTM annotations from Uniport/Swiss-Prot for users to download. This database will be updated every three months. The MusiteDeep server is available at https://www.musite.net. The stand-alone tools for locally using MusiteDeep are available at https://github.com/duolinwang/MusiteDeep_web.

INTRODUCTION

Protein post-translational modifications (PTMs) generally refer to the additions of various functional groups to amino acid residues (1). PTM is a key mechanism to increase proteomic diversities and plays an important role in the regulation of protein functions (2). Therefore, identifying and understanding PTMs are critical in the studies of biology and diseases. To date, as the accumulation of PTM experimental data, dozens of bioinformatics tools have been developed for PTM site prediction, which provide a fast and low-cost approach in contrast to experimental methods. Many of these tools apply a machine-learning algorithm and provide a prediction for a particular PTM type. Here, we briefly review several representative tools. Musite (3) was proposed by our group and applies a support vector machine (SVM) for phosphorylation site prediction, using the K nearest neighbor (KNN) score, disorder scores and amino acid frequencies as features. GlycoEP (4) used SVM for N-, O- and C-linked glycosylation site prediction. Besides raw sequence features, GlycoEP extracted amino acid composition (AAC) profiles, position-specific scoring matrix (PSSM) profiles, secondary structures, and surface accessibilities as features. GPS-PAIL (5) is a tool to predict HAT-specific lysine acetylation sites, which used their previously proposed GPS2.2 algorithm (6) as well as features from an amino acid substitution matrix (e.g. BLOSUM62) and protein-protein interaction. GPS-SUMO (7) is another GPS algorithm-based tool to predict the sumoylation sites. MePred-RF (8) applied a random forest algorithm with a complex sequence-based feature selection technique to predict methylarginine and methyllysine sites. RF-Hydroxysite (9) applied a random forest algorithm for hydroxylysine and hydroxyproline site prediction that combined information from physicochemical, structural, evolutionary and sequence-order features. Css-Palm4.0 (10) applied a clustering and scoring strategy for palmitoylation site prediction. UbiProber (11) was designed for ubiquitin site prediction that uses KNN, physicochemical property, and AAC features to train an SVM-based predictor. DeepPhos recently applied densely connected convolutional neural network (CNN) blocks for phosphorylation site prediction (12). Because the dysregulation of PTM plays important roles in the development and progression of diseases (13–15), a number of databases were developed to annotate existing or predicted PTM sites with SNPs or diseases, such as dbPTM (16), PTMcode (17) and AWESOME (18). They also provide predictions by assembling third-party tools. For example, the recently developed AWESOME applied 20 available tools for different types of PTM site predictions, and the method described in this paper was included for phosphorylation site prediction.

Despite the availability of these tools and databases, the number of webservers that provide a general prediction for many different PTM types is quite low. PTM-ssMP (19) is one, but it relies on known modification profiles, which cannot make de-novo prediction outside the profiles. ModPred (20) provides a general webserver for 23 different modifications. However, it was published in 2014 and applies the logistic regression method, with a performance in need of improvement by more advanced machine learning methods. Most of the other existing predictive webservers were developed for a single type of PTM prediction, such as GlycoEP and MePred-RF. All these servers limit the number of submissions (mostly a single sequence), and none of them supports batch submission for any large-scale prediction, due to calculations of more complex features, such as PSSM, which takes significant computation time.

Here, we introduce a new webserver, MusiteDeep, to provide a general deep-learning framework for protein PTM site prediction and visualization. The method was first introduced in (21). To the best of our knowledge, MusiteDeep was the first deep-learning method in phosphorylation (one of the most studied PTMs) site prediction. It takes raw protein sequences as input and uses CNN (22) with a novel two-dimensional (2D) attention mechanism. It has been widely benchmarked by other predictors (12,23–25) and has always ranked in first or second place. It has also been adopted in several other services (18,26–27). Later, we upgraded the deep-learning framework with the capsule network (28) and extended it to predict for more PTM types, which showed superior performance for almost all the cases with small training samples (29). In this webserver, we updated the previous framework by combining the two previous networks and utilizing more advanced ensemble techniques, while simultaneously providing prediction and visualization for multiple PTMs. The server provides a real-time prediction for a large number of proteins by using only CPU without GPU resources. Users can interactively review predicted PTM sites in the context of known PTM annotations and protein 3D structures through a homology-based search. In addition, the server maintains a local database (updated every three months) to provide pre-processed PTM annotations from Uniport/Swiss-Prot for download. Comparing with the existing web services, MusiteDeep has some obvious advantages in accuracy, speed and scale, and it also provides some unique functions for analyzing prediction results.

MATERIALS AND METHODS

Method overview

Deep-learning framework

The framework of MusiteDeep for protein PTM site prediction is shown in Figure 1. We treated the PTM site prediction problem as a binary classification problem, and for each type of PTM, we trained an independent predictor. In the training process, the framework accepts raw protein sequences as input, and then 33-length residue fragments centered at the target sites were extracted and coded by the one-of-K coding method. We considered the 20 common amino acids and a hyphen character ‘-’, which is used to pad the positions when the valid fragment length is less than 33. Therefore, each position is represented by a 21D vector, with value 1 at the index corresponding to the amino acid or the hyphen character, and a 0 at all other indexes; meanwhile, uncommon amino acids are filled with 0.05. The final output of the framework is a confidence score of the PTM prediction. In regard to the deep-learning architecture, we used the combination of the two previously proposed networks, i.e., MultiCNN (21) and CapsNet (29) as shown in Figure 1 right. The MultiCNN model is constructed by three one-dimensional (1D) CNN layers, a two-dimensional (2D) attention layer, and two fully connected layers; the CapsNet is constructed by two 1D CNN layers, a PrimaryCaps layer and a PTMCaps layer. We trained both networks separately, and in the prediction procedure, a final prediction score is calculated by averaging the prediction scores obtained by the two independent networks. The architecture details can be found in the Supplementary Text S1.

Figure 1.

Figure 1.

Flowchart of the MusiteDeep framework. pos: positive fragments. neg: negative fragments.

Bootstrapping and weight averaging

Because nearly all PTM types have more negative samples than positive samples, to address the unbalanced issues during training, a bootstrapping technique was applied. As shown in Figure 1 left, the training fragments were partitioned into N subsets, each containing the same number of positive and negative fragments; here, N was determined by the integer part of the negative to positive ratio. The network was trained iteratively, and the number of iterations was set as N, or in practical use, an upper limit (30 by default). In each training iteration, one subset was used to train the network through the Adam stochastic optimization (30) based on mini-batches. After training for N iterations, one classifier was obtained. The early stopping strategy was applied in each iteration, and when the loss of a validation set did not decrease in some number of epochs (one forward and backward pass over the entire subset), the training procedure for that subset would stop. It has been demonstrated that an ensemble model created by averaging the weights from a continuous training procedure leads to wider optima and better generalization (31). Therefore, during the bootstrapping procedure, we applied the weight averaging strategy. We treated each iteration trained on one subset as one training cycle and we saved the weights generated from each iteration denoted as Wi, and their loss on the validation set is denoted as Li. The final weight W of the classifier can be calculated by the weighted average of the weights from all the iterations as follows:

graphic file with name M2.gif (1)

To further improve the performance, we trained an ensemble of 10 × N_C models using a nested cross-validation. The original training data was divided into 10 equal-sized subsets. Each time, nine subsets were used to train a model, and the remaining subset was used as validation to monitor its training process. Ten different training sets were used during the training. In the meantime, on the same training set, we repeated the bootstrapping procedure for N_C times, and N_C independent classifiers were obtained. N_C is a hyper-parameter which can be determined by users, and N_C = 2 was used in this work. The final prediction score was the average of the scores obtained from the 10 × N_C ensemble models.

Transfer learning

For PTM types that have small training samples, we applied a transfer learning technique to further improve the performance. The lower layers of CNN serve as feature extraction layers, and the extracted features can be generalized to a different dataset. Consider the phosphotyrosine as an example. Because it is catalyzed by different kinase groups with phosphoserine or phosphothreonine, we and other researchers have trained separate models for them. However, they share some common features: For example, the phosphorylation always happened in the disorder region. Therefore, in this case, the transfer learning technique can be applied to use a larger dataset to capture the common features and to use the smaller dataset to expatiate its specified features. In particular, we trained a base network on the phosphoserine and phosphothreonine data; then, we used the pre-trained weights of the base network to initialize the weights for the phosphotyrosine predictor. Finally, we fine-tuned the weights of the predictor using the phosphotyrosine data.

Through the combination of the two architectures and the ensemble techniques, the overall performance has been improved, which is shown in the Supplementary Figure S1 by comparing the previous methods on the 10-fold cross-validation datasets provided in (29).

Performance evaluation

Because different tools used different thresholds to present the prediction results, to avoid the effects of distinct threshold values, we used the area under the ROC curves (AUC) and the area under the precision-recall curves to evaluate the performance. Especially, when the negative data is very large, the precision-recall curves are more appropriate to evaluate the performance of a predictor.

RESULTS

MusiteDeep web server

Server inputs and outputs

The input of the server is protein sequences in the FASTA format. The server provides two options for input, paste mode and upload mode. For a small task with up to 10 sequences or 500 amino acids, users can paste their sequences to the input panel, and the job will start immediately and return the result in real time once submitted. For a larger-scale task, users can upload a FASTA file with up to 10 MB. In this mode, once the job is submitted, it will be placed in a queue for processing. One user can process up to five such jobs at the same time. The job can be accessed later by the provided URL or by checking the user's job history. It is important to notice that since we used the browser's local storage to remember the identity of a user, the job history only lists previous jobs that were successfully submitted by the user using the same browser; however, access through the URL has no such restriction. All the jobs will be saved on the server for 72 hours with up to 100MB per user. MusiteDeep does not have a complex feature calculation procedure so it can handle a large number of proteins by only CPU. It takes less than three minutes to predict for 1000 sequences per PTM type. Users can simultaneously select multiple models for prediction from the drop-down list. After a job is finished, the output can be visualized for each input sequence one by one, which can be retrieved by its sequence name or its index number. The output is shown in Figure 2. The predicted PTMs are labeled using their abbreviations on the top of the corresponding positions. Multiple labels are shown on top of one position if that position is predicted to have multiple PTMs. The highlighted colors of the predicted sites correspond to their prediction confidence levels. Upon hovering the mouse on the predicted sites, the detailed information of the prediction will be shown. A user may adjust the prediction confidence threshold by using the slider to obtain more or fewer predicted sites. Besides interactive visualization, the results can be downloaded as plain text, with information of protein identifier, position, residue, PTMscore, and the predicted PTMs whose scores are higher than the user-defined or default cut-off. An example is shown in Supplementary Table S1. In the server, we also provide a REST API for this service along with a template Python program to demonstrate how to use the API.

Figure 2.

Figure 2.

An example visualization of the prediction results.

View predicted PTM sites in the context of known PTM annotations

MusiteDeep provides a homology-based search against proteins in UniProtKB/Swiss-Prot, and presents known PTM annotations at the aligned positions, as shown in Figure 3. Protein accession identifier (ACCID), Blast sequence identity, and the known PTM annotations on homologous proteins are presented for each input sequence. Upon hovering the mouse over the colored sites, the specific annotation will be shown. Proteins can be accessed in UniProtKB/Swiss-Prot database by clicking their ACCIDs. In the server, we also provide a REST API for this service along with a template Python program to demonstrate how to use the API.

Figure 3.

Figure 3.

An example output of the Blast-based annotation function.

View predicted PTM sites in the context of protein 3D structure

MusiteDeep provides visualizations of the predicted PTM sites in 3D protein structures by integrating G2S (32), a tool to annotate genomic variants on protein structures, and an NGL viewer (33), which is a web application for molecular visualization. First, a query sequence with the predicted PTM sites is searched by G2S; then, its homologous proteins that have 3D structures in RCSB PDB (34) will be retrieved with the mapping between sequence positions and structural positions. The retrieved information is shown in Figure 4.

Figure 4.

Figure 4.

An example output retrieved from G2S.

The query protein and its predicted PTMs can be viewed in the 3D structure context, as shown in Figure 5. The hover text shows the information of the predicted site, which contains its position on the query sequence, its amino acid types at the query sequence position and at the PDB structural position, and its predicted PTM types (in abbreviation). In this example, multiple PTMs are viewed at the same time, which gives the sense of 3D spatial locations of PTM sites. Users can propose several hypotheses accordingly, such as whether the predicted sites are physically near each other or whether they form a potential PTM cross-talk. i.e. whether these PTMs of multiple residues work together to determine a particular functional outcome. In the example of Figure 5, all the predicted PTM sites locate closely on the structure, which only takes place in the loop region. Since most PTMs tend to occur on the protein surface, we also provide the user an option to add the molecule surface by checking the ‘Add surface’ box.

Figure 5.

Figure 5.

View predicted PTM sites in the 3D structure context.

Annotated PTM sequences from UniProtKB/Swiss-Prot

The UniProtKB/Swiss-Prot database contains publicly available and expertly annotated protein sequences (35), including the PTM annotations. MusiteDeep maintains a local database of UniProtKB/Swiss-Prot, which provides pre-processed PTM annotations for users to download and is updated every 3 months.

Web server implementation

The webserver consists of a three-layer architecture of front-end, server-end, and business logic layers. The front-end of the server is implemented with JavaScript libraries, React and jQuery to provide an interactive user interface; the back-end is implemented with KOA, a next-generation web framework for node.js; the deep-learning framework was implemented in the business logic layer by Python. We used mongoDB for the server's database. The REST APIs are implemented by KOA and is available at the API section of the server. The stand-alone tools used to run several services on a local machine are available at GitHub (https://github.com/duolinwang/MusiteDeep_web) with detailed documentation.

Independent benchmarking

To demonstrate the performance of the PTM site prediction of MusiteDeep in practical use, we compared MusiteDeep with existing tools by using a timestamp-based dataset. Because each type of PTM may have dozens of predictive tools, to compare with all of them is very challenging. Therefore, besides ModPred, which can cover all of our provided PTM types, we selected the most representative public available tools based on their performance and publication citation for each PTM comparison. The training data was constructed by extracting the protein sequences from UniProtKB/Swiss-Prot before 2010, and the timestamp-based testing data was constructed by the newly released data after 2010. All the annotations generated by computational predictions were removed. For each PTM, all the residues annotated by UniProtKB/Swiss-Prot with the same type of PTM were treated as positive sites, while the residues with the same amino acids excluding the PTM annotations were regarded as the negative sites. The statistics of the data are shown in Supplementary Table S2. The performance of the whole testing data is evaluated by the area under the ROC curves and the area under the precision-recall curves, as shown in Table 1. We also evaluate the performance on test subsets that have different levels of sequence similarities to the training data. The results are shown in Supplementary Figure S2, which shows that most prediction performances hold well with low sequence similarities.

Table 1.

Performance of MusiteDeep vs. ModPred and a representative method in each PTM

Area under ROC/area under precision-recall curve
PTM types MusiteDeep ModPred Other
Phosphoserine/threonine 0.896/0.329 0.753/0.134 DeepPhos: 0.809/0.190
Phosphotyrosine 0.958/0.864 0.695/0.151 DeepPhos: 0.681/0.163
N-linked glycosylation 0.993/0.937 0.774/0.264 GlycoEP: 0.928/0.210
O-lined glycosylation 0.943/0.539 0.783/0.128 GlycoEP: 0.808/0.043
N6-acetyllysine 0.978/0.858 0.702/0.127 GPS-PAIL: 0.629/0.229
Methylarginine 0.941/0.844 0.770/0.130 MePred-RF: 0.681/0.152
Methyllysine 0.951/0.850 0.670/0.108 MePred-RF: 0.782/0.514
S-palmitoylation-cysteine 0.961/0.922 0.824/0.478 Css-Palm4.0: 0.735/0.465
Pyrrolidone-carboxylic-acid 0.979/0.947 0.860/0.578 -
Ubiquitination 0.804/0.279 0.584/0.091 UbiProber: 0.651/0.107
SUMOylation 0.990/0.881 0.740/0.213 GPS-SUMO: 0.706/0.357
Hydroxylysine 0.982/0.930 0.974/0.891 RF-Hydroxysite: 0.919/0.300
Hydroxyproline 0.732/0.627 0.694/0.437 RF-Hydroxysite: 0.514/0.075

CONCLUSIONS

In this paper, we present MusiteDeep, a web server for protein PTM site prediction and visualization. The method behind the server is a combination of our previously proposed two deep-learning models implemented with two ensemble techniques. Since the predictor does not require the calculation of complex features, the server is capable of providing real-time prediction and batch submission for large-scale protein sequences. The output is presented at the amino acid level for multiple PTMs at the same time. All the submitted jobs will be saved in the server for 72 h with up to 100MB for users to retrieve. Besides prediction, MusiteDeep provides facilities for users to interactively review the predicted PTM sites in the context of known PTM annotations and protein 3D structures. In addition, the server maintains a local database providing pre-processed PTM annotations from Uniport/Swiss-Prot for users to download. Compared with the existing web services, MusiteDeep has some obvious advantages in accuracy, speed and scale. Besides the web server, we provide user-friendly Web APIs to access several services through Python programs and stand-alone tools, which allow users to run MusiteDeep on local machines.

Some limitations of this work include only providing models for PTM types that have enough data in UniProtKB/Swiss-Prot and focusing exclusively on a general modification induced by adding functional groups to the side chain of intermediate residues. In our future work, we plan to extend the framework to more PTM types, including the peptide cleavage and N-terminal PTMs, such as N-terminal acetylation and proteolysis. We will also expand our training data to include more databases on PTMs. The challenge that remains is how to combine the data from different sources and how to control the potential errors. These challenges will be the topics of our future studies.

DATA AVAILABILITY

MusiteDeep is available as a web server at https://www.musite.net. The stand-alone tools to run several MusiteDeep services on a local machine are available in the GitHub repository (https://github.com/duolinwang/MusiteDeep_web).

Supplementary Material

gkaa275_Supplemental_File

Contributor Information

Duolin Wang, Christopher S. Bond Life Sciences Center, University of Missouri, Columbia, MO 65211, USA; Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

Dongpeng Liu, Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

Jiakang Yuchi, Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

Fei He, Christopher S. Bond Life Sciences Center, University of Missouri, Columbia, MO 65211, USA; School of Information Science and Technology, Northeast Normal University, Changchun, Jilin 130117, China.

Yuexu Jiang, Christopher S. Bond Life Sciences Center, University of Missouri, Columbia, MO 65211, USA; Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

Siteng Cai, Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

Jingyi Li, School of Information Science and Technology, Northeast Normal University, Changchun, Jilin 130117, China.

Dong Xu, Christopher S. Bond Life Sciences Center, University of Missouri, Columbia, MO 65211, USA; Department of Electrical Engineering and Computer Science, University of Missouri, Columbia, MO 65211, USA.

SUPPLEMENTARY DATA

Supplementary Data are available at NAR Online.

FUNDING

National Institutes of Health [R35-GM126985]. Funding for the open access charge: National Institutes of Health [R35-GM126985].

Conflict of interest statement. None declared.

REFERENCES

  • 1. Knorre D.G., Kudryashova N.V., Godovikova T.S.. Chemical and functional aspects of posttranslational modification of proteins. Acta Naturae. 2009; 1:29–51. [PMC free article] [PubMed] [Google Scholar]
  • 2. Prabakaran S., Lippens G., Steen H., Gunawardena J.. Post-translational modification: nature's escape from genetic imprisonment and the basis for dynamic information encoding. Wiley Interdiscip. Rev. Syst. Biol. Med. 2012; 4:565–583. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 3. Gao J., Thelen J.J., Dunker A.K., Xu D.. Musite, a tool for global prediction of general and kinase-specific phosphorylation sites. Mol. Cell. Proteomics. 2010; 9:2586–2600. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 4. Chauhan J.S., Rao A., Raghava G.P.. In silico platform for prediction of N-, O- and C-glycosites in eukaryotic protein sequences. PLoS One. 2013; 8:e67008. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 5. Deng W., Wang C., Zhang Y., Xu Y., Zhang S., Liu Z., Xue Y.. GPS-PAIL: prediction of lysine acetyltransferase-specific modification sites from protein sequences. Sci. Rep. 2016; 6:39787. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 6. Liu Z., Yuan F., Ren J., Cao J., Zhou Y., Yang Q., Xue Y.. GPS-ARM: computational analysis of the APC/C recognition motif by predicting D-boxes and KEN-boxes. PLoS One. 2012; 7:e34370. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 7. Zhao Q., Xie Y., Zheng Y., Jiang S., Liu W., Mu W., Liu Z., Zhao Y., Xue Y., Ren J.. GPS-SUMO: a tool for the prediction of sumoylation sites and SUMO-interaction motifs. Nucleic Acids Res. 2014; 42:W325–W330. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 8. Wei L., Xing P., Shi G., Ji Z., Zou Q.. Fast prediction of protein methylation sites using a sequence-based feature selection technique. IEEE/ACM Trans. Comput. Biol. Bioinf. 2019; 16:1264–1273. [DOI] [PubMed] [Google Scholar]
  • 9. Ismail H.D., Newman R.H., Kc D.B.. RF-Hydroxysite: a random forest based predictor for hydroxylation sites. Mol. Biosyst. 2016; 12:2427–2435. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 10. Ren J., Wen L., Gao X., Jin C., Xue Y., Yao X.. CSS-Palm 2.0: an updated software for palmitoylation sites prediction. Protein Eng Des Sel. 2008; 21:639–644. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 11. Chen X., Qiu J.D., Shi S.P., Suo S.B., Huang S.Y., Liang R.P.. Incorporating key position and amino acid residue features to identify general and species-specific Ubiquitin conjugation sites. Bioinformatics. 2013; 29:1614–1622. [DOI] [PubMed] [Google Scholar]
  • 12. Luo F., Wang M., Liu Y., Zhao X.M., Li A.. DeepPhos: prediction of protein phosphorylation sites with deep learning. Bioinformatics. 2019; 35:2766–2773. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 13. Santos A.L., Lindner A.B.. Protein posttranslational modifications: roles in aging and age-related disease. Oxid Med Cell Longev. 2017; 2017:5716409. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 14. Wan L., Xu K., Chen Z., Tang B., Jiang H.. Roles of post-translational modifications in spinocerebellar ataxias. Front. Cell Neurosci. 2018; 12:290. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 15. Wang Y.C., Peterson S.E., Loring J.F.. Protein post-translational modifications and regulation of pluripotency in human stem cells. Cell Res. 2014; 24:143–160. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 16. Huang K.Y., Lee T.Y., Kao H.J., Ma C.T., Lee C.C., Lin T.H., Chang W.C., Huang H.D.. dbPTM in 2019: exploring disease association and cross-talk of post-translational modifications. Nucleic Acids Res. 2019; 47:D298–D308. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 17. Minguez P., Letunic I., Parca L., Bork P.. PTMcode: a database of known and predicted functional associations between post-translational modifications in proteins. Nucleic Acids Res. 2013; 41:D306–D311. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 18. Yang Y., Peng X., Ying P., Tian J., Li J., Ke J., Zhu Y., Gong Y., Zou D., Yang N. et al.. AWESOME: a database of SNPs that affect protein post-translational modifications. Nucleic Acids Res. 2019; 47:D874–D880. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 19. Liu Y., Wang M., Xi J., Luo F., Li A.. PTM-ssMP: A Web Server for Predicting Different Types of Post-translational Modification Sites Using Novel Site-specific Modification Profile. Int. J. Biol. Sci. 2018; 14:946–956. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 20. Pejaver V., Hsu W.L., Xin F., Dunker A.K., Uversky V.N., Radivojac P.. The structural and functional signatures of proteins that undergo multiple events of post-translational modification. Protein Sci. 2014; 23:1077–1093. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 21. Wang D., Zeng S., Xu C., Qiu W., Liang Y., Joshi T., Xu D.. MusiteDeep: a deep-learning framework for general and kinase-specific phosphorylation site prediction. Bioinformatics. 2017; 33:3909–3916. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 22. LeCun Y., Bengio Y., Hinton G.J.n. Deep learning. Nature. 2015; 521:436–444. [DOI] [PubMed] [Google Scholar]
  • 23. Xu Y., Song J., Wilson C., Whisstock J.C.. PhosContext2vec: a distributed representation of residue-level sequence contexts and its application to general and kinase-specific phosphorylation site prediction. Sci. Rep. 2018; 8:8240. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 24. Maiti S., Hassan A., Mitra P.. Boosting phosphorylation site prediction with sequence feature-based machine learning. Proteins. 2020; 88:284–291. [DOI] [PubMed] [Google Scholar]
  • 25. Fenoy E., Izarzugaza J.M.G., Jurtz V., Brunak S., Nielsen M.. A generic deep convolutional neural network framework for prediction of receptor-ligand interactions-NetPhosPan: application to kinase phosphorylation prediction. Bioinformatics. 2019; 35:1098–1107. [DOI] [PubMed] [Google Scholar]
  • 26. Yu K., Zhang Q., Liu Z., Zhao Q., Zhang X., Wang Y., Wang Z.X., Jin Y., Li X., Liu Z.X. et al.. qPhos: a database of protein phosphorylation dynamics in humans. Nucleic Acids Res. 2019; 47:D451–D458. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 27. López-García G., Jerez J.M., Urda D., Veredas F.J.. 2019 International Joint Conference on Neural Networks (IJCNN). 2019; IEEE; 1–8. [Google Scholar]
  • 28. Sabour S., Frosst N., Hinton G.E.. Jordan MI, LeCun Y, Solla SA. Advances in Neural Information Processing Systems. 2017; 3856–3866. [Google Scholar]
  • 29. Wang D., Liang Y., Xu D.. Capsule network for protein post-translational modification site prediction. Bioinformatics. 2019; 35:2386–2394. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 30. Kingma D.P., Ba J.L.. Adam: a method for stochastic optimization. 2014; arXiv:22 December 2014, pre-print: not peer reviewedhttps://arxiv.org/abs/1412.6980.
  • 31. Izmailov P., Podoprikhin D., Garipov T., Vetrov D., Wilson A.G.J.a.p.a.. Averaging weights leads to wider optima and better generalization. 2018; arXiv:14 March 2018, pre-print: not peer reviewedhttps://arxiv.org/abs/1803.05407.
  • 32. Wang J., Sheridan R., Sumer S.O., Schultz N., Xu D., Gao J.. G2S: a web-service for annotating genomic variants on 3D protein structures. Bioinformatics. 2018; 34:1949–1950. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 33. Rose A.S., Hildebrand P.W.. NGL Viewer: a web application for molecular visualization. Nucleic Acids Res. 2015; 43:W576–W579. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 34. Burley S.K., Berman H.M., Bhikadiya C., Bi C., Chen L., Di Costanzo L., Christie C., Dalenberg K., Duarte J.M., Dutta S. et al.. RCSB Protein Data Bank: biological macromolecular structures enabling research and education in fundamental biology, biomedicine, biotechnology and energy. Nucleic Acids Res. 2019; 47:D464–D474. [DOI] [PMC free article] [PubMed] [Google Scholar]
  • 35. Boutet E., Lieberherr D., Tognolli M., Schneider M., Bansal P., Bridge A.J., Poux S., Bougueleret L., Xenarios I.. UniProtKB/swiss-prot, the manually annotated section of the uniprot knowledgebase: how to use the entry view. Methods Mol. Biol. 2016; 1374:23–54. [DOI] [PubMed] [Google Scholar]

Associated Data

This section collects any data citations, data availability statements, or supplementary materials included in this article.

Supplementary Materials

gkaa275_Supplemental_File

Data Availability Statement

MusiteDeep is available as a web server at https://www.musite.net. The stand-alone tools to run several MusiteDeep services on a local machine are available in the GitHub repository (https://github.com/duolinwang/MusiteDeep_web).


Articles from Nucleic Acids Research are provided here courtesy of Oxford University Press

RESOURCES