The weighted network enable us to make use of many weak connections which otherwise will e excluded in an unweighted network.
The edge weight is a combination of three factors:
If a TF i has n binding sites that are linked to gene j, then the edge weight is determined by:
note: insert photo here
Let s be the vector containing node weights and W be the edge weight matrix. The personalized PageRank score vector v was calculated by solving a system of linear equations v=(1-d)s+dWv, where d is the damping factor (default to 0.85). The above equation can be solved in an interative fashion, i.e. , setting vt+1=(1-d)s+dWvt.
To determine the statistical significance of PageRank scores, we randomly rewire edges in the network and compute the PageRank scores. We do this 10 times to get enough samples for computing the null distribution. The p-values of PageRank scores were then inferred as to the null distribution.