// StartMathJax Script window.MathJax = {loader: {load: [ 'input/asciimath', 'ui/lazy', 'output/chtml', 'ui/menu']} }; (function() { var script = document.createElement('script'); script.src = "https://cdn.jsdelivr.net/npm/mathjax@3/es5/startup.js"; script.async = true; document.head.appendChild(script); })(); // UpdateTypeset Script config = { attributes: true, childList: true, subtree: true }; // Callback function to execute when mutations are observed callback = (mutationList, observer) => { for (mutation of mutationList) { if (mutation.type === 'childList') { console.log('A child node has been added or removed.'); MathJax.typeset(); } else if (mutation.type === 'attributes') { console.log(`The ${mutation.attributeName} attribute was modified.`); } } }; // Create an observer instance linked to the callback function observer = new MutationObserver(callback); document.onreadystatechange = () => { if (document.readyState === 'complete') { console.log("Loaded fully according to readyState") targetNode = document.getElementById('content-wrapper') console.log(targetNode) // Start observing the target node for configured mutations observer.observe(targetNode, config); } }
top of page
Ying Liu

A summary of research paper on protein sequences segmentation

The research paper can be found here.


In this paper, the authors introduced a protein sequences segmentation methods called peptide-pair encoding (PPE), a general-purpose probabilistic segmentation of protein sequences into commonly occurring variable-length sub-sequences. This method was inspired by the byte-pair encoding (BPE) text compression algorithm in Natural Language Processing.


This PPE method was used as the input to the downstream machine learning tasks: DiMotif and ProtVecX. The result showed that the new method of embedding outperforms the others in some cases. Here, I am focusing on protein classification tasks with another protein sequence embedding method, ProtVecX, trained on variable-length segments of protein sequences.


This approach was addressed as a general purposed embedding method as the other segmentation tasks were combined with sequence tasks such as secondary structure prediction, or binding site prediction.


Peptide-pair encoding


The input to the PPE algorithm is a set of sequences and the output would be segmented sequences and segmentation operations, an ordered list of amino acid merging operations to be applied for cementing new sequences. At the beginning of the algorithm, each sequence is a list of amino acids. It then search for the most frequently occurring pair of adjacent amino acids in all input sequences. In the next step, the selected pairs of amino acids are replaced by the merged version of the selected pair as a new symbol (a short peptide) This process is continued until it could not find a frequent pattern or it reaches a certain vocabulary size.

The system is trained through the high quality Swiss-Prot database, which contains over 500k protein sequences. The single segmentation scheme is helpful in some case, It might also result in ignoring important information for the task of interest. Hence, the PPE method proposed a sampling framework for estimating the segmentation of a sequence in a probabilistic manner.


Result


Protein classification results for venom toxins, subcellular location, and enzyme predictions using deep MLP neural network on top of different combinations of features are provided as below.



It looks like there is not much difference in the result with different representations.


1 view0 comments

Comments


bottom of page