This is a test version of Biostars. For the public version, visit https://www.biostars.org.
is there a method two compare EC similarity?

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

drug enzyme ecc number

1 answer

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).

Log in to answer this question.