-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontrollable.txt
More file actions
21 lines (20 loc) · 1.11 KB
/
Copy pathcontrollable.txt
File metadata and controls
21 lines (20 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## This file includes the faster simple heuristics, together with versions of them accounting for the controllable (i.e. drug-targetable) nodes.
##
## Simple, fast heuristics -> see 'simple_fast.txt' for details.
T F 1 (->A)(->T)
T F 1 (->D)(->CA)(->PA)(->N)(->T)
T F 1 (->@CA)(->@PA)(->D)(->CA)(->PA)(->N)(->T)
## Favor controllable nodes and avoid cycles.
T F 1 (->K)(->A)(->T)
## Consider nodes in the following way:
## - driven, indirectly controlled or controllable predecessors of uncontrollable nodes
## - acyclic predecessors of uncontrollable nodes
## - remaining predecessors of uncontrollable nodes
## - a selection of predecessors of controllable nodes (as an alternative to directly marking them driven)
T F 1 (->#XD.#XC.#XK)(->#XA)(->#X)(->#KD.#KC)
T F 1 (->#XD.#XC.#XK)(->#XA)(->#X)(->#KD.#KC.#KP)
T F 1 (->#XD.#XC.#XK)(->#XA)(->#X)(->#KD.#KC.#KP.#KK)
## Same as the above, but include in the first step already seen predecessors of uncontrollable nodes.
T F 1 (->#XD.#XC.#XP.#XK)(->#XA)(->#X)(->#KD.#KC)
T F 1 (->#XD.#XC.#XP.#XK)(->#XA)(->#X)(->#KD.#KC.#KP)
T F 1 (->#XD.#XC.#XP.#XK)(->#XA)(->#X)(->#KD.#KC.#KP.#KK)