|
Algorithm 1 HSEP essential proteins identification. |
Require: A PPI network , Gene expression data, Subcellular location data Gene Ontology GO. Ensure: Essential protein set. Step 1
-
1:
Convert G to Bidirectional Digraph
-
2:
for each interacting protein pair in PPI do
-
3:
Calculate /*The closeness of the two nodes*/
-
4:
Calculate /*the importance of two nodes based on Gene expression */
-
5:
Calculate /*The functional similarity of the two nodes based on GO annotation*/
-
6:
Calculate /*the reliable of two nodes based on subcellular localization */
-
7:
end for
-
8:
for each interacting protein pair (a,b) in
do
-
9:
edge =
-
10:
edge = ++
-
11:
end for
Step 2
-
12:
form in
do
-
13:
for each node v in V
do
-
14:
-
15:
-
16:
-
17:
-
18:
-
19:
until
-
20:
return
-
21:
end for
-
22:
end for
-
23:
calculate ensemble score
-
24:
a essential proteins set=
|