Suvarna Garge (Editor)

GRAph ALigner (GRAAL)

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

GRAaph ALigner (GRAAL) is an algorithm for global network alignment that is based solely on network topology. It aligns two networks G and H by producing an alignment that consists of a set of ordered pairs ( x , y ) , where x is a node in G and y is a node in H . GRAAL matches pairs of nodes originating in different networks based on their graphlet degree signature similarities, where a higher similarity between two nodes corresponds to a higher topological similarity between their extended neighborhoods (out to distance 4). GRAAL produces global alignments, i.e., it aligns each node in the smaller network to exactly one node in the larger network. The matching proceeds using a technique analogous to the "seed and extend" approach of the popular BLAST algorithm for sequence alignment: it first chooses a single "seed" pair of nodes (one node from each network) with high graphlet degree signature similarity. It then expands the alignment radially outward around the seed as far as practical using a greedy algorithm (see [Kuchaiev et al., 2010] for details).

Contents

Method

When aligning two graphs G ( V , E ) and H ( U , F ) , GRAAL first computes costs of aligning each node v in G with each node u in H . The cost of aligning two nodes takes into account the graphlet degree signature similarity between them, modified to reduce the cost as the degrees of both nodes increase, since higher degree nodes with similar signatures provide a tighter constraint than correspondingly similar low degree nodes. In this way, GRAAL align the densest parts of the networks first. Let d e g ( v ) be the degree of a node v in network G , let m a x d e g ( G ) be the maximum degree of nodes in G , let S ( v , u ) be the graphlet degree signature similarity of nodes v and u , and let α be a parameter in [0, 1] that controls the contribution of the node signature similarity to the cost function (that is, 1 α is the parameter that controls the contribution of node degrees to the cost function), then the cost of aligning nodes v and u is computed as:
C ( v , u ) = 2 ( ( 1 α ) × d e g ( v ) + d e g ( u ) m a x _ d e g ( G ) + m a x _ d e g ( H ) + α × S ( v , u ) ) .
A cost of 0 corresponds to a pair of topologically identical nodes v and u , while a cost close to 2 corresponds to a pair of topologically different nodes.

GRAAL chooses as the initial seed a pair of nodes ( v , u ) , v V and u U , that have the smallest cost. Ties are broken randomly. Once the seed is found, GRAAL builds "spheres" of all possible radii around nodes v and u . A sphere of radius r around node v is the set of nodes S G ( v , r ) = { x V : d ( v , x ) = r } that are at distance r from v , where the distance d ( v , x ) is the length of the shortest path from v to x . Spheres of the same radius in two networks are then greedily aligned together by searching for the pairs ( v , u ) : v S G ( v , r ) and u S H ( u , r ) that are not already aligned and that can be aligned with the minimal cost. When all spheres around the seed ( v , u ) have been aligned, some nodes in both networks may remain unaligned. For this reason, GRAAL repeats the same algorithm on a pair of networks ( G p , H p ) for p = 1 , 2 , and 3 , and searches for the new seed again, if necessary. Network G p is defined as a new network G p = ( V , E p ) having the same set of nodes as G and having ( v , x ) E p if and only if the distance between nodes v and x in G is less than or equal to p , i.e., d G ( v , x ) p . Note that G 1 = G . Using G p , p > 1 , allows us to align a path of length p in one network to a single edge in another network, which is analogous to allowing "insertions" or "deletions" in a sequence alignment. GRAAL stops when each node from G is aligned to exactly one node in H .

Application

GRAAL was used to align two protein-protein interaction (PPI) networks and predict biological function of unannotated proteins based on the function of their annotated aligned partners. Also, GRAAL was used to compute a pairwise all-to-all network similarity matrix between metabolic networks of a group of species and then build their phylogenetic tree. All of this was achieved using solely network topological information.

References

GRAph ALigner (GRAAL) Wikipedia