Algorithm 3. Gene correlation filter (GCF) |
Input: |
Output: Strongly correlated genes in the PPI network. |
Begin: |
Compute Pearson’s correlation matrix () using Equation (2). |
for each i = 1 to n do: |
for each j = 1 to n do: |
if > 0 then: |
Compute using Equation (3). |
if then: |
if then: |
; |
End if. |
End if. |
else: |
Eliminate (); |
End if. |
End for. |
End for. |
return ; |
End. |