Skip to main content
. 2023 May 10;14(5):1063. doi: 10.3390/genes14051063
Algorithm 4. Find IC values
Input: Strongly correlated genes in the PPI network (RD2).
Output: The genes with IC values.
Begin:
  Find the CET of g using Equation (6).
  for each giCETgi do:
    for each gjCETgj do:
      ICgigj=ICgiICgj;
    End for.
    ICASgigi=ICgiICASgi;
  End for.
  return ICgi;
End.