Hi there,
Given two proteins with their EC Numbers, I'd like to know if the EC number are similarity. Is there a method, web service or python implementation for calculate ec similarity?
Thank you very much
Hi there,
Given two proteins with their EC Numbers, I'd like to know if the EC number are similarity. Is there a method, web service or python implementation for calculate ec similarity?
Thank you very much
I found a solution...
First, you have to create a matrix with all enzyme classes where each cell corresponds to an enzyme class. You can download the enzyme classes in the Enzyme Database: enter link description here
To compare two EC numbers, you have to convert the EC number to a bit array of the same size as the enzyme class matrix where each cell corresponds to the presence or absence of the enzyme class.
After that, apply jaccard similarity using two sets where it results in the degree of similarity between 0 (dissimilarity) and 1 (similar).
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.