Skip to main content
. 2023 May 10;14(5):1063. doi: 10.3390/genes14051063
Algorithm 3. Gene correlation filter (GCF)
Input: RD1
Output: Strongly correlated genes in the PPI network.
Begin:
Compute Pearson’s correlation matrix (rij) using Equation (2).
for each i = 1 to n do:
  for each j = 1 to n do:
   if rij > 0 then:
    Compute Rij2 using Equation (3).
    if Rij0 then:
     if LLscoreigi,gj1&&Semsimgi,gj1 then:
      RD2Rij;
     End if.
    End if.
   else:
    Eliminate (gi,gj);
   End if.
  End for.
End for.
return RD2;
End.