Skip to main content

ProMotE: an efficient algorithm for counting independent motifs in uncertain network topologies

Abstract

Background

Identifying motifs in biological networks is essential in uncovering key functions served by these networks. Finding non-overlapping motif instances is however a computationally challenging task. The fact that biological interactions are uncertain events further complicates the problem, as it makes the existence of an embedding of a given motif an uncertain event as well.

Results

In this paper, we develop a novel method, ProMotE (Probabilistic Motif Embedding), to count non-overlapping embeddings of a given motif in probabilistic networks. We utilize a polynomial model to capture the uncertainty. We develop three strategies to scale our algorithm to large networks.

Conclusions

Our experiments demonstrate that our method scales to large networks in practical time with high accuracy where existing methods fail. Moreover, our experiments on cancer and degenerative disease networks show that our method helps in uncovering key functional characteristics of biological networks.

Background

Biological networks describe a system of interacting molecules. Through these interactions, these molecules carry out key functions such as regulation of transcription and transmission of signals [1]. Biological networks are often modeled as graphs, with nodes and edges representing interacting molecules (e.g., protein or gene) and the interactions between them respectively [24]. Studying biological networks has great potential to provide significant new insights into systems biology [5, 6].

Network motifs are patterns of local interconnections occurring significantly more in a given network than in a random network of the same size [7]. Identifying motifs is crucial to uncover important properties of biological networks. They have already been successfully used in many applications, such as understanding important genes that affect the spread of infectious diseases [8], revealing relationship across species [6, 9], and discovering processes which regulate transcription [10].

Network motif discovery is a computationally hard problem as it requires solving the well-known subgraph isomorphism problem, which is NP-complete [11]. The fact that biological interactions are often inherently stochastic events further complicates the problem [12]. An interaction may or may not happen with some probability. This uncertainty follows from the fact that biological processes governing these interactions, such as DNA replication process, inherently exhibit uncertainties. For example, DNA replication can initiate at different chromosome locations with various probabilities [13]. Besides the replication time variance, other epigenetic factors can also alter the expression levels of genes, which in turn affect the ability of proteins to interact [14].

Existing studies model the uncertainty of biological interactions using a probability value showing the confidence in its presence [12]. More specially, each edge in the network is associated with a probability value. Several databases, such as MINT [15] and STRING [16], already provide interaction confidence values. If a biological network has at least one uncertain interaction, we call it a probabilistic network. Otherwise, it is a deterministic network. In the rest of the paper, we represent a probabilistic network using a graph denoted with G=(V,E,P), where V denotes the set of interacting molecules, E denotes the interactions among them, and P:E→(0,1] is the function that assigns a probability value to each edge.

Several approaches have been developed to solve the network motif discovery problem (e.g., [1719]). However, most of them focus on deterministic network topologies. The main reason behind this limitation is that a probabilistic network summarizes all deterministic networks generated by all possible subsets of interactions. Thus, a probabilistic network G=(V,E,P) yields 2|E| deterministic instances. The exponential growth of the number of deterministic instances makes it impossible to directly apply existing solutions to probabilistic networks. Relatively little research has been done on finding motifs in probabilistic networks. Tran et al. [20] proposed a method to derive a set of formulas for count estimation. This study however has not provided a general mathematical formulation for arbitrary motif topologies. It rather requires a unique mathematical formulation for each motif. Besides, it assumes that all interactions of the probabilistic network have the same probability. Thus, it fails to solve the generalized version of the problem where each interaction takes place with a possibly different probability. Todor et al. [21] developed a method to solve the generalized version of the problem. It computes the exact mean and variance of the number of motif instances. Both of above two methods count the maximum number of motif instances using \(\mathcal {F}_{1}\) measure, that is including all possible embeddings regardless of whether they overlap with each other or not.

There are two more restrictive frequency measures, \(\mathcal {F}_{2}\) and \(\mathcal {F}_{3}\), which avoid reuse of graph elements [19]. \(\mathcal {F}_{2}\) measure considers that two embeddings of a motif overlap if they share an edge. \(\mathcal {F}_{3}\) measure is more restrictive as it defines overlap as sharing of a node. These two measures count the maximum number of non-overlapping embeddings of a given motif. We explain the difference among three frequency measures on a hypothetical deterministic network Go (see Fig. 1a). Consider the motif pattern M in Fig. 1b. Go yields six possible embeddings of M denoted with the embedding set \(\mathcal {H} = \{H_{1},H_{2},H_{3}, H_{4}, H_{5}, H_{6}\}\) (see Fig. 1c-h). Since \(\mathcal {F}_{1}\) measure counts all possible embeddings, the \(\mathcal {F}_{1}\) count is six. As embeddings H1 and H6 do not have common edges, the \(\mathcal {F}_{2}\) count is two. All pairs of embeddings in this set share nodes. As a result, the \(\mathcal {F}_{3}\) count is one.

Fig. 1
figure 1

An example to explain three frequency measures. a A hypothetical deterministic network Go with seven nodes and eight edges. b A motif pattern M with four nodes and three edges. c - h Six possible embeddings of motif pattern M in network Go denoted with the embedding set \(\mathcal {H} =\{H_{1}, H_{2}, H_{3}, H_{4}, H_{5}, H_{6}\}\). i A triangle pattern. j An embedding set of triangle pattern

\(\mathcal {F}_{2}\) and \(\mathcal {F}_{3}\) measures satisfy a fundamental characteristic, the downward closure property, which \(\mathcal {F}_{1}\) measure fails to have. This property is essential for constructing large motifs [22]. It ensures that the frequency of network motifs is monotonically decreasing with increasing size of motif patterns. For example, in the deterministic network Go (see Fig. 1a), given the triangle pattern (see Fig. 1i), there are two triangle embeddings in total (Fig. 1j). Consider a larger motif pattern, such as the pattern in Fig. 1b. The \(\mathcal {F}_{1}\) count however becomes six, which conflicts with the downward closure property. Besides, non-overlapping motifs are needed in navigation methods such as folding and unfolding of the network [23]. Taking the importance of non-overlapping motifs into account, Sarkar et al. [24] developed a method to count the non-overlapping motifs in probabilistic networks using the \(\mathcal {F}_{2}\) measure. Their study builds a polynomial to model the distribution of the number of motif instances overlapping with a specific embedding of that motif. However, the exponential growth of the size of polynomial terms makes it not scalable to large networks.

Contributions. In this paper, we develop a scalable method, named ProMotE (Probabilistic Motif Embedding), to tackle the problem of counting independent motifs in a given probabilistic network. We formally define the problem in “Preliminaries and problem definition” section. We explain our method for the \(\mathcal {F}_{2}\) measure, yet the same algorithm can trivially be applied to the \(\mathcal {F}_{3}\) measure. This study has three major contributions over the existing literature: (1) The key bottleneck in counting motifs in probabilistic networks is computing the distribution of the number of overlapping embeddings of a given motif instance. We build a new method which allows us to avoid computing this distribution whenever possible. (2) Computing the distribution in (1) above necessitates constructing a polynomial. We devise two strategies, which compute bounds to the overlapping motif count distribution prior to constructing the entire polynomial. These bounds enable us to terminate the costly computation of the distribution whenever possible. (3) We develop a new strategy which allows multiplication of arbitrarily large polynomials using a limited amount of memory. Our experimental results demonstrate that our algorithm is orders of magnitude faster than existing methods. Our results on cancer and disease networks suggest that our method can help in uncovering key functional characteristics of the genes participating in those networks.

We organize the rest of the paper as follows. We present our algorithm in “Methods” section. We discuss our experimental results in “Results and discussion” section and conclude in “Conclusions” section.

Methods

In this section, we present our method, ProMotE. First, we formally define the independent motif counting problem in probabilistic networks (“Preliminaries and problem definition” section). We next summarize the method by Sarkar et al. [24] (“Overview of the existing solution” section). We then present the method developed in this paper. Our method introduces three strategies (Sections “Avoiding loss computation”, “Efficient polynomial collapsation” and “Overcoming memory bottleneck”), which help us scale to large network size, for which existing methods fail.

Preliminaries and problem definition

In this section we present basic notation needed to define the problem considered in this paper. We denote the given probabilistic network and motif pattern with G=(V,E,P) and M respectively. For each edge e i in G, we denote the probability that e i is present and absent with p i and q i respectively (i.e., p i +q i =1). We denote the set of all possible deterministic network topologies one can observe from G with \( \mathcal {D}(G) = \{G^{o} = (V, E^{o}) | ~E^{o} \subseteq E\}\). We denote a specific deterministic network which inherits all nodes and edges from G but assume that all of its edges exist with G=(V,E). Figure 2 depicts a probabilistic network and its three possible deterministic networks (i.e., in total there are 28=256 deterministic networks). We denote the probability of observing a specific deterministic network \(G^{o} \in \mathcal {D}(G)\) with

$$\mathcal{P}(G^{o}|G) = \prod_{e_{i} \in E^{o}}p_{i} \prod_{e_{j} \in E-E^{o}}q_{j}.$$
Fig. 2
figure 2

A probabilistic network G and three of its possible deterministic network topologies denoted with \(G_{1}^{o}\), \(G_{2}^{o}\) and \(G_{3}^{o}\)

Given a deterministic network Go=(V,Eo) and a motif pattern M, we represent the set of all its embeddings with \(\mathcal {H}(M|G^{o})\). We construct the overlap graph for \(\mathcal {H}(M|G^{o})\), denoted with \(\bar {G^{o}}\), by representing each embedding \(H_{k} \in \mathcal {H}(M|G^{o})\) as a node and inserting an edge into two nodes if their corresponding embeddings share at least one edge. Thus, for a specific embedding H k , the degree of its corresponding node in \(\bar {G^{o}}\) equals the number of embeddings overlapping with H k . Figure 3 depicts the overlap graph of the embeddings found in deterministic network Go shown in Fig. 1. Consider a subset of embeddings \(\mathcal {H}^{o} \subseteq \mathcal {H}(M|G^{o})\). We define an indicator function ζ() on \(\mathcal {H}^{o}\) as follows: \(\zeta (\mathcal {H}^{o}) = 1\) if no two embeddings in \(\mathcal {H}^{o}\) share an edge, and \(\zeta (\mathcal {H}^{o}) = 0\) otherwise.

Fig. 3
figure 3

The overlap graph \(\bar {G^{o}}\) of the deterministic network Go (Fig. 1a) for its six embeddings (Fig. 1c-h)

Consider a specific embedding H k in G. Because of the uncertain nature of the probabilistic network, each embedding exists with a probability value. As a result, the number of embeddings overlapping with H k is also uncertain. We represent it using a random variable B k . To calculate the distribution of B k , we construct a bipartite graph denoted with \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\). \(\mathcal {V}_{1}\) and \(\mathcal {V}_{2}\) represent two node sets, and \(\mathcal {E}\) represents the edges connecting nodes of \(\mathcal {V}_{1}\) with those of \(\mathcal {V}_{2}\). Each neighboring node of H k in the overlap graph corresponds to a node in \(\mathcal {V}_{1}\). Each edge in the edge set, which constitutes all those overlapping embeddings of H k , corresponds to a node in \(\mathcal {V}_{2}\). Notice that this edge set excludes the edges of embedding H k itself. An edge exists between nodes \(u \in \mathcal {V}_{1}\) and \(v \in \mathcal {V}_{2}\) if the corresponding embedding of node u has the edge denoted by v. Figure 4 shows the bipartite graph G4 of embedding H4 in Go (see Fig. 1). H1, H2, H3, H5 and H6 are neighbours of H4 in the overlap graph \(\bar {G^{o}}\) (see Fig. 3). Thus these embeddings are nodes in \(\mathcal {V}_{1}\) of G4. Their edges include e1,e2,e3,e4,e5,e6,e7 and e8. As edges e3, e5, e6 and e7 are also edges of H4, only e1,e2,e4 and e8 constitute \(\mathcal {V}_{2}\) of G4.

Fig. 4
figure 4

The bipartite graph G4 of the embedding H4. Each x i denotes the variable for each node in \(\mathcal {V}_{1}\). Each Z j represents the edge polynomial for each node in \(\mathcal {V}_{2}\)

To help better understand this paper, we introduce another two notations x-polynomial and collapse operator. Given a bipartite graph G k , we compute a polynomial, called the x-polynomial as follows. For each node \(v_{i} \in \mathcal {V}_{1}\), it defines a unique variable x i . For each node \(v_{j} \in \mathcal {V}_{2}\), the probability that v j ’s corresponding edge is present and absent is p j and q j (q j =1−p j ) respectively. For each node \(v_{j} \in \mathcal {V}_{2}\), we construct a polynomial called edge polynomial Z j as

$$ Z_{j}= p_{j} \prod\limits_{(v_{i},v_{j}) \in \mathcal{E}} x_{i} + q_{j}. $$
(1)

The first term of this edge polynomial consists of the product of the variables of those overlapping embeddings containing this edge. The second term only has the probability of the absence of this edge. We explain the concept of edge polynomial using the example of the bipartite graph in Fig. 4. In this example, the edge polynomial for edge e1 is Z1=p1x1+q1. Also the edge polynomial corresponding to e2 is Z2=p2x1x2x3+q2. The first term of this edge polynomial represents the case that when edge e2 is present, it contributes to the existence of embeddings H1, H2 and H3 with a probability p2. The second term however represents the case that when edge e2 is absent with probability q2, none of those three embeddings exist. We compute the x-polynomial of H k denoted with \(\mathcal {Z}_{H_{k}}\) as

$$ \mathcal{Z}_{H_{k}} = \prod_{v_{j} \in \mathcal{V}_{2}} Z_{j}. $$
(2)

The key characteristic of the x-polynomial in the above equation is that its terms model all possible deterministic network topologies for the edges denoted by \(\mathcal {V}_{2}\). We write the jth term of the x-polynomial as \(\alpha _{j} \prod _{v_{i} \in \mathcal {V}_{1}} x_{i}^{c_{ij}}\), where α j is the probability and c ij is the exponent of the variable x i . To compute this polynomial faster, we introduces a collapse operator for each variable x r denoted with ϕ r (), as follows. Let us denote the degree of \(v_{i} \in \mathcal {V}_{1}\) with deg(v i |G k ). For each node’s unique variable x i , we define an indicator function ψ i (c), where ψ i (c)=1 if c=deg(v i |G k ), otherwise ψ i (c)=0. Using these notations, for the jth term of the x-polynomial, we compute collapse operator ϕ r () as

$$ {}\phi_{r}\left(\alpha_{j} \prod_{v_{i} \in \mathcal{V}_{1}} x_{i}^{c_{ij}}\right) = [t \psi_{r}(c_{ij}) + (1 - \psi_{r}(c_{ij})] \alpha_{j} \prod_{v_{i} \in \mathcal{V}_{1} - \{v_{r}\}} x_{i}^{c_{ij}}. $$
(3)

Notice that, the collapse operator ϕ r only changes the variable x r . It either replaces it with t or completely removes it depending on the outcome of ψ r (). When ψ r ()=1 (i.e., c rj =deg(v r |G k )), it means that all edges of embedding H r are present (e.g., H r exists). Thus, the variable t replaces x r which means a motif is present. When ψ r ()=0, it indicates that at least one edge of H r is absent. Thus, the entire H r is missing. For example, consider one of the terms resulting from the product of all edge polynomials in \(\mathcal {Z}_{H_{4}}\), \(q_{1}p_{2}p_{4}q_{8}x_{1}^{2}x_{2}^{2}x_{3}^{2}x_{5}\). If we apply the collapse operator ϕ1() to this term, the variable x1 will be removed as ψ1()=0 (deg(H1|G4) = 3 while the exponent of x1 in this term is 2). Similarly, if we apply the collapse operator ϕ2() to this term, the variable x2 will be replaced with t as ψ2()=1 (deg(H2|G4) = 2 and the exponent of x2 in this term is also 2). After applying all collapse operators to this term, it becomes q1p2p4q8t3 which indicates that when only edges e2 and e4 are present, there are three embeddings present. And this case happens with a probability q1p2p4q8. We apply the collapse operator ψ r to the polynomial terms as soon as it completes multiplication of the final edge polynomial of the variable x r , which means that no other edge polynomial can increase the exponent of x r .

Given these definitions, we formally define two different independent motif counting problems next.

Definition 1

(INDEPENDENT MOTIF COUNTING IN PROBABILISTIC NETWORK I). Given a probabilistic network G=(V,E,P) and a motif pattern M, find a set of independent embeddings which yields the maximum expected number of occurrences in G, which is

$$\begin{array}{*{20}l} {\underset{\substack{\mathcal{H}^{\prime}, \mathcal{H}^{\prime} \subseteq \mathcal{H}(M|G^{\prime}) \\ \zeta(\mathcal{H}^{\prime}) = 1}}{\arg\max}} \left\{ \sum_{G^{o} \in \mathcal{D}(G)} |\mathcal{H}(M|G^{o}) \cap \mathcal{H}^{\prime}| \cdot \mathcal{P}(G^{o}|G)\right\}. \end{array} $$
(4)

We explain the problem on a hypothetical probabilistic network G(see Fig. 2). To better explain the problem, we also list some possible deterministic networks in Fig. 2. Notice that this probabilistic network has the same network topology as the deterministic network Go in Fig. 1a. As a result, G has six possible embeddings same with Go, which are H1, H2, H3, H4, H5 and H6 (see Fig. 1c-h). According to the problem definition, we seek to find a set of non-overlapping embeddings which contributes to the maximum expected number of motif count over all possible deterministic network topologies. For those six embeddings of G, we are able to construct five sets of independent embeddings, which are {H1,H6},{H2}, {H3}, {H4} and H5 (see Fig. 3 for the relationship between embeddings). For each set, we summarize the expected motif count over the set of all alternative deterministic network topologies based on Eq. 4. Table 1 lists the result. Then, we choose the set with maximum motif count. Notice that, the resulting embedding set with the maximum expected motif count is not guaranteed to always have the largest motif frequency among all possible deterministic networks. For example, in deterministic network \(G_{1}^{o}\), the set {H1,H6} has the highest motif frequency; while in network \(G_{3}^{o}\), it is the set {H2} achieves the largest motif count. By requiring to select the set of embeddings with highest frequency in each possible deterministic network, we have our second independent motif counting problem. We formally define it next.

Table 1 {H1,H6}, {H2}, {H3}, {H4} and {H5} are the five possible independent embedding sets of the motif M (Fig. 1) in network G (Fig. 2). The table shows the number of embeddings occurring at each deterministic network for each independent embedding set and its expected value in G

Definition 2

(INDEPENDENT MOTIF COUNTING IN PROBABILISTIC NETWORK II). Given a probabilistic network G=(V,E,P) and a motif pattern M, compute the expected number of maximum independent occurrences of M in G, which is

$$\begin{array}{*{20}l} \sum\limits_{G^{o} \in \mathcal{D}(G)} {\underset{\substack{\mathcal{H}^{o}, \mathcal{H}^{o} \subseteq \mathcal{H}(M|G^{o}) \\ \zeta(\mathcal{H}^{o}) = 1}}{\arg\max}} {|\mathcal{H}^{o}|} \cdot \mathcal{P}(G^{o}|G). \end{array} $$
(5)

Notice that in this problem, we are required to always select the largest independent embedding set in each possible deterministic network topology. We compute the expected number of independent motif by iterating over all possible deterministic networks and summing up the motif count. For example, in the example network (Fig. 2), the expected independent motif count is calculated by \(2 \cdot \mathcal {P}(G_{1}^{o}|G) + 1 \cdot \mathcal {P}(G_{2}^{o}|G) + 1 \cdot \mathcal {P}(G_{3}^{o}|G) + \dots \).

The former definition of the independent motif counting problem above (Definition 1) seeks the genes, which are more likely to carry out the function characterized by the given motif across all possible deterministic topologies. The latter definition (Definition 2) does not care about the identity of the set of genes engaged in the process as the set of genes vary depending on the deterministic network topology observed. It instead counts the number of different ways we can observe the process separately for each topology even though that set may differ from one topology to another. In this paper, we focus on the first problem. The rationale is that we often do not know the specific deterministic topology realized at a given point in time. Furthermore, this topology can vary over time. Notice that this problem can be solved by enumerating all possible deterministic network topologies and independent embedding sets. However, it is infeasible to scale to large networks as the numbers of deterministic network topologies and independent embedding sets grow exponentially. In this paper, we develop a scalable method to tackle this problem by utilizing a polynomial model and three strategies. We discuss this polynomial model and three strategies next.

Overview of the existing solution

Here, we briefly describe the method by Sarkar et al. [24] for counting independent motif instances, as our method utilizes the same polynomial model in that study. Given a probabilistic graph G=(V,E,P) and the specified motif pattern M, the algorithm works in three steps. First, it discovers all motif embeddings in the deterministic network G=(V,E). It then builds an overlap graph for these embeddings. Next, it uses a heuristic strategy to count non-overlapping motif embeddings; it calculates a priority value for each node (we explain how to compute priority value below) and iteratively picks the node with the highest priority in the overlap graph. It includes the corresponding embedding to the result set, adds the probability that this embedding exists to the motif count and removes this node along with all of its neighbouring nodes from the overlap graph. It repeats this process until the graph is empty.

The key step of this method is calculating the priority value for each node in the overlap graph. The priority value of a node primarily depends on the number of neighbours of a node. In a probabilistic networks, both the existences of an embedding and its overlapping embeddings are uncertain as the edges which make up those embeddings are probabilistic. To accurately model this uncertainty, for each embedding H k , it first calculates a gain value a k , which equals to the probability that H k exists \(\left (a_{k} = \prod _{e \in H_{k}} P(e)\right)\). Then it computes a loss value using the number of neighbours of H k which is represented with a random variable B k . It then computes the loss value of H k as a function of B k , denoted with f(B k ). Finally, it determines the priority value, denoted with ρ k , as a function of gain value and loss value. In this paper, we compute ρ k as a k /f(B k ).

Sarkar et al. compute the distribution of B k using a x-polynomial. To construct this x-polynomial, it first builds an undirected bipartite graph denoted with \(G_{k} = (\mathcal {V}_{1},\mathcal {V}_{2}, \mathcal {E})\). Then for each node \(v_{j} \in \mathcal {V}_{2}\), it constructs an edge polynomial Z j . After multiplying all edge polynomials and collapsing it, the x-polynomial takes the form

$$ \mathcal{Z}_{H_{k}} = \sum\limits_{j = 0}^{s} p_{kj} t^{j}. $$
(6)

The coefficients of the polynomial \(\mathcal {Z}_{H_{k}}\) is the true distribution of the random variable B k (i.e., j, the coefficient of tj is the probability that B k =j). For any further information, we refer the interested readers to [24].

Avoiding loss computation

Recall that, we calculate the distribution of B k for all nodes of the overlap graph only to select the one that yields the highest priority value ρ k () (see “Overview of the existing solution section”). Here, we develop a method to quickly compute an upper bound to ρ k . This allows us to avoid computation of the distribution of B k for the node v k when the upper bound to ρ k is less than ρ j for any node v j considered prior to v k . To explain this strategy, we first present our theory which establishes the foundation of the upper bound computation. We start by defining our notation.

Consider \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\) of an embedding H k . For a given subset \(\mathcal {V}_{2}^{\prime } \subseteq \mathcal {V}_{2}\), let us denote the x-polynomial of H k after multiplying the edge polynomials of node set \(\mathcal {V}_{2}^{\prime }\) with \(Z_{H_{k},\mathcal {V}_{2}^{\prime }}\). Below, we discuss our theory using a lemma, a theorem, and a corollary.

Lemma 1

Consider the bipartite graph of motif embedding H k denoted with \({G_{k}=(\mathcal {V}_{1},\mathcal {V}_{2}, \mathcal {E})}\). For all nodes \(v_{r} \in \mathcal {V}_{2}-\mathcal {V}_{2}^{\prime }\), \(\forall \tau \in \{0,1,2,\dots,|\mathcal {V}_{1}|\}\), we have

$$P\left(B_{k} \ge \tau | Z_{H_{k},\mathcal{V}_{2}^{\prime}}\right) \le P\left(B_{k} \ge \tau | Z_{H_{k},\mathcal{V}_{2}^{\prime} \cup {v_{r}}}\right). $$

Proof

We expand \(P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime }}\right)\) as

$$ P\left(B_{k} \ge \tau | Z_{H_{k},\mathcal{V}_{2}^{\prime}}\right) = \sum\limits_{\tau^{\prime} = \tau}^{|\mathcal{V}_{1}|} P\left(B_{k}=\tau^{\prime} | Z_{H_{k},\mathcal{V}_{2}^{\prime}}\right). $$
(7)

We first discuss how to compute the probability that exactly τ neighboring embeddings of H k exist. After multiplying edge polynomials and collapsing, \(Z_{H_{k},\mathcal {V}_{2}^{\prime }}\) takes the following form:

$$\begin{array}{*{20}l} Z_{H_{k},\mathcal{V}_{2}^{\prime}} =& \phi_{1} \left(\phi_{2} \left(\dots \phi_{|\mathcal{V}_{1}|} \left(\prod_{\substack{v_{j} \in \mathcal{V}_{2}^{\prime} \\ \mathcal{V}_{2}^{\prime} \subset \mathcal{V}_{2}}} Z_{j}\right)\right) \right) \\ =& \sum\limits_{j} t^{j}\left(\sum\limits_{l} \left(\alpha_{jl} \prod\limits_{v_{i} \in \mathcal{V}_{1}}x_{i}^{c_{ijl}}\right)\right). \end{array} $$

Here, \({\sum \nolimits }_{l} \alpha _{jl}\), which sums up all the coefficients of the polynomial terms containing tj, equals to the probability that exactly j neighboring embeddings of H k exist after multiplying the edge polynomials of \(\mathcal {V}_{2}^{\prime }\). Next, we focus on one polynomial term from the above x-polynomial. Let us denote this polynomial term as \( A = \alpha t^{j} \prod \limits _{v_{i} \in \mathcal {V}_{1}}x_{i}^{c_{i}} \). Let us define an indicator function δ r (i), where δ r (i)=1 if \((v_{i},v_{r}) \in \mathcal {E}\), otherwise δ r (i)=0. Then after multiplying one more edge polynomial, say \(Z_{r} = p_{r} \prod \limits _{(v_{i},v_{j}) \in \mathcal {E}} x_{i} + (1-p_{r})\), the polynomial term A expands into two polynomial terms denoted as B+C, where \(B=p_{r} \alpha t^{j} \prod \limits _{v_{i} \in \mathcal {V}_{1}}x_{i}^{c_{i}+\delta _{r} (i)}\) and \(C=(1-p_{r}) \alpha t^{j} \prod \limits _{v_{i} \in \mathcal {V}_{1}}x_{i}^{c_{i}}\). Two cases may happen after the collapsing of the polynomial terms B and C.

Case 1: There is no collapse. The exponent of the variable t of polynomial terms B and C remains the same. Adding up the coefficients of term tj, we get

$$\alpha p_{r} + \alpha (1-p_{r}) = \alpha.$$

Thus, after multiplying another edge polynomial, the coefficient of term t j remains the same. In other words, multiplying another edge polynomial has no effect on P(B k τ). Mathematically, \(P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime }}\right) = P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime } \cup {v_{r}}}\right)\).

Case 2: There is collapse. In this case, the exponent of the variable t of polynomial term B will increase while it stays the same for polynomial term C, since multiplying the second term of Z r does not introduce any x variable. Let us denote the increment in the exponent of t (i.e., the number of x i variables which collapse after multiplying Z r ) with j0. Now the polynomial terms B and C become \(p_{r} \alpha t^{j+j_{0}} \prod \limits _{v_{i} \in \mathcal {V}_{1}}x_{i}^{c_{i}}\) and \((1-p_{r}) \alpha t^{j} \prod \limits _{v_{i} \in \mathcal {V}_{1}}x_{i}^{c_{i}}\) respectively. How this multiplication affects P(B k τ) depends on the relationship between j and τ. We have two cases:

Case 2.a When j<τ, polynomial term A does not contribute to P(B k τ) before multiplying Z r . After multiplying Z r , polynomial term C also does not contribute to P(B k τ). Whether polynomial term B contributes to P(B k τ) depends on the relationship between j+j0 and τ. If j+j0τ, the probability that j+j0 neighboring embeddings of H k exist grows. Thus, based on the Eq. 7, P(B k τ) increases by p r α (i.e., the coefficient of \(\phantom {\dot {i}\!}t^{(j+j_{0})}\)). On the other hand, if j+j0<τ, polynomial term B has no effect on P(B k τ). In conclusion, after multiplying one more edge polynomial, the value of P(B k τ) either increases or remains the same. Mathematically, \(P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime }}\right) \le P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime } \cup {v_{r}}}\right)\).

Case 2.b When jτ, the polynomial term A contributes to P(B k τ). From Eq. 7, before multiplying Z r , the amount of contribution of polynomial term A to P(B k τ) is α. After multiplying Z r , the amount of contribution is equal to the sum of the coefficients of the polynomial terms B and C, where is αp r +α(1−p r )=α. Thus, P(B k τ) remains the same. Mathematically, \(P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime }}\right) = P\left (B_{k} \ge \tau | Z_{H_{k},\mathcal {V}_{2}^{\prime } \cup {v_{r}}}\right)\). □

The above lemma leads to the following theorem:

Theorem 1

Consider a motif embedding H k and its corresponding bipartite graph \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\). Also consider a subset \(\mathcal {V}_{2}^ \prime \subset \mathcal {V}_{2}\). Given a monotonic function \(\gamma (): \mathbb {R} \to \mathbb {R}\) such that γ(0)=0 and for xy≥0, γ(x)≥γ(y)≥0. \(\forall v_{r} \in \mathcal {V}_{2}-\mathcal {V}_{2}^{\prime }\), we have

$${}\sum\limits_{j=0}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} = \!j | Z_{H_{k},\mathcal{V}_{2}^ \prime}\right) \le \sum\limits_{j=0}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} = j | Z_{H_{k},\mathcal{V}_{2}^ \prime \cup v_{r}}\right).$$

Proof

From the monotonicity of γ() function, for j≥1, we have

$$\gamma (j) - \gamma (j-1) \ge 0.$$

From Lemma 1, given \(\mathcal {V}_{2}^ \prime \) and \(v_{r} \in \mathcal {V}_{2} - \mathcal {V}_{2}^ \prime \), for j≥0, we have

$$P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) \le P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime \cup v_{r}}\right).$$

For j≥1, by multiplying both sides of the inequality with (γ(j)−γ(j−1)), we get

$$\begin{aligned} &(\gamma (j) - \gamma (j-1)) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right)\\ &\quad\le (\gamma (j) - \gamma (j-1)) P(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime \cup v_{r}}). \end{aligned} $$

Thus, summing up this inequality \(\forall j \le |\mathcal {V}_{1}|\), we get

$$ \begin{aligned} &\sum\limits_{j=1}^{|\mathcal{V}_{1}|} (\gamma (j) - \gamma (j-1)) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right)\\ &\quad \le \sum\limits_{j=1}^{|\mathcal{V}_{1}|} (\gamma (j) - \gamma (j-1)) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime \cup v_{r}}\right). \end{aligned} $$
(8)

We rewrite the left side of this inequality as

$$ {{\begin{aligned} & \sum\limits_{j=1}^{|\mathcal{V}_{1}|} (\gamma (j) - \gamma (j-1)) P(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}) \\ &= \sum\limits_{j=1}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) - \sum\limits_{j=1}^{|\mathcal{V}_{1}|} \gamma (j-1) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) \\ &= \sum\limits_{j=1}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) - \sum\limits_{j=0}^{|\mathcal{V}_{1}|-1} \gamma (j) P\left(B_{k} \ge j+1 | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) \\ &= \sum\limits_{j=1}^{|\mathcal{V}_{1}|-1} {\gamma (j) \left[ P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) - P\left(B_{k} \ge j+1 | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) \right]} \\ &{}+ \gamma ({|\mathcal{V}_{1}|}) P\left(B_{k} \ge {|\mathcal{V}_{1}|} | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) - \gamma (0)P\left(B_{k} \ge 1 | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right) \end{aligned}}} $$
(9)

Given P(B k =j)=P(B k j)−P(B k j+1) and γ(0)=0, we rewrite Eq. 9 as

$$\begin{array}{*{20}l} &{} \sum\limits_{j=1}^{|\mathcal{V}_{1}|} (\gamma (j) - \gamma (j-1)) P(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}) \\ &{}= \sum\limits_{j=1}^{|\mathcal{V}_{1}|-1}\! {\gamma (j) P\left(B_{k} \,=\, j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\!\right)} \,+\, \gamma (|\mathcal{V}_{1}|) P\!\left(B_{k} \!= {\!|\mathcal{V}_{1}| | Z_{H_{k}, \mathcal{V}_{2}^ \prime}}\!\right) \\ &{}= \sum\limits_{j=1}^{|\mathcal{V}_{1}|} {\gamma (j) P\left(B_{k} = j | Z_{H_{k}, \mathcal{V}_{2}^ \prime}\right)} \end{array} $$

Similarly, we rewrite the right side of Inequality (8) as

$$\begin{aligned} \sum\limits_{j=1}^{|\mathcal{V}_{1}|} (\gamma (j) - \gamma (j-1)) P\left(B_{k} \ge j | Z_{H_{k}, \mathcal{V}_{2}^ \prime \cup v_{r}}\right)\\[-12pt] =\sum\limits_{j=1}^{|\mathcal{V}_{1}|} {\gamma (j) P\left(B_{k} = j | Z_{H_{k}, \mathcal{V}_{2}^ \prime \cup v_{r}}\right)}. \end{aligned} $$

Using the above equations, We rewrite the Inequality (8) as

$${}\sum\limits_{j=1}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} = j | Z_{H_{k},\mathcal{V}_{2}^ \prime}\right) \le \sum\limits_{j=1}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} \,=\, j | Z_{H_{k},\mathcal{V}_{2}^ \prime \cup v_{r}}\right). $$

As γ(0)=0, using the above inequality, we get

$${}\sum\limits_{j=0}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} = j | Z_{H_{k},\mathcal{V}_{2}^ \prime}\right) \le \sum\limits_{j=0}^{|\mathcal{V}_{1}|} \gamma (j) P\left(B_{k} \,=\, j | Z_{H_{k},\mathcal{V}_{2}^ \prime \cup v_{r}}\right). $$

This theorem gives us a general form of f(B k ) function which is monotonically increasing. For example, the expected value of B k , Exp(B k ) falls into that category. Corollary below proves it:

Corollary 1

Given \(\mathcal {V}_{2}^ \prime \) and \(v_{r} \in \mathcal {V}_{2} - \mathcal {V}_{2}^ \prime \), the expected number of neighboring embeddings of H k monotonically increases with growing edge polynomial set:

$$Exp(B_{k} | Z_{H_{k},\mathcal{V}_{2}^{\prime}}) \le Exp\left(B_{k} | Z_{H_{k},\mathcal{V}_{2}^{\prime} \cup {v_{r}}}\right).$$

Proof

The expected value of B k can be computed as

$$Exp(B_{k}) = \sum\limits_{j=0}^{|\mathcal{V}_{1}|} {jP(B_{k}=j)}.$$

We have γ(j)=j which is a monotonical function. Thus, from Theorem 1, we have

$$Exp\left(B_{k} | Z_{H_{k},\mathcal{V}_{2}^{\prime}}\right) \le Exp\left(B_{k} | Z_{H_{k},\mathcal{V}_{2}^{\prime} \cup {v_{r}}}\right). $$

Using Theorem 1, we develop our method for avoiding the costly computation of the distribution of B k for each embedding H k of the given motif in the target network. Our method works for all monotonic loss functions (e.g., f(B k )=Exp(B k )). Assume that, k>1, i1≤i<k, we already computed the values a i , distribution of B i , f(B i ), and thus ρ i . Let us denote the largest observed priority value so far with ρ=max1≤i<k{ρ i }. We explain next how we use this information to avoid computation of the distribution of B k whenever possible. Let us denote the bipartite graph of H k with \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\). Our algorithm iteratively multiplies the edge polynomials for all the nodes in \(\mathcal {V}_{2}\) one by one and collapses the resulting polynomial. Let us denote the set of nodes in V2 with \(\mathcal {V}_{2} = v_{1}, v_{2}, \dots, v_{|\mathcal {V}_{2}|}\). Without losing generality, let us assume that we multiply the edge polynomials in the order \(v_{1}, v_{2}, \dots, v_{|\mathcal {V}_{2}|}\). j, \(1 \le j \le |\mathcal {V}_{2}|\), after multiplying the first j polynomials, we get an intermediate probability distribution \(B_{k}^ j\). Using that distribution \(B_{k}^ j\), we compute an intermediate priority value for H k and denote it with \(\rho _{k}^ j\). Recall that Theorem 1 states that j, \(\rho _{k}^{j} \le \rho _{k}^{j-1}\) (i.e., the priority value monotonically decreases if loss value monotonically increases). Following from this theorem, we terminate computation of B k as soon as \(\rho _{k}^ j\) becomes less than the best priority value observed, ρ. This eliminates costly polynomial multiplication for H k .

When to stop the calculation of B k largely depends on the best priority value ρ observed so far. The larger ρ is, the sooner we terminate the computation of B k . Thus, the ideal ordering places embeddings with larger priority values should earlier. The dilemma here is that we do not know the priority values of the embeddings at this stage. Therefore, we use a proxy value of each embedding H k , denoted with Q k , which is trivial to compute, a k (i.e., the gain value of H k ) divided by the number of overlapping embeddings with H k . We rank embeddings in descending order of their Q k values. The rationale behind using the value Q k is as follows. Recall that the priority value of H k is determined by the gain value a k and the loss value, which largely depends on the distribution of its neighboring nodes. Q k conjectures that the larger the degree of the corresponding node of H k is, the larger its loss value is. Thus, Q k is inversely proportional to the number of embeddings, which conflict with H k .

Efficient polynomial collapsation

Collapsation plays an important role in calculating the distribution of B k of the embedding H k efficiently. The sooner we collapse the polynomial terms, the earlier we compute an upper bound to ρ k . Here, we introduce two orthogonal strategies to ensure early collapsation during the construction of the x-polynomial. We describe our strategies on the bipartite graph \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\) of H k . Our first strategy focuses on \(\mathcal {V}_{1}\). The second one focuses on \(\mathcal {V}_{2}\).

Optimization on \(\mathcal {V}_{1}\) In order to collapse an x-polynomial term, which contains variable x i , we need to multiply all the edge polynomials containing x i (see Eq. 3). The degree of the node \(v_{i} \in \mathcal {V}_{1}\), deg(v i |G k ) is equal to the number of edge polynomials that the variable x i needs to be collapsed. Consider a node \(v_{i} \in \mathcal {V}_{1}\) with deg(v i |G k )=1. Suppose that \( \exists v_{j} \in \mathcal {V}_{2}\), \((v_{i},v_{j}) \in \mathcal {E}\). We collapse the variable x i as soon as the edge polynomial Z j has been multiplied into the x-polynomial. In this case, the collapse operator ϕ i will replace the variable x i in x-polynomial with t. Following from this observation, our first strategy works as follows. Consider a node \(v_{j} \in \mathcal {V}_{2}\). Let us denote the set of all nodes \(v_{i} \in \mathcal {V}_{1}\) for which deg(v i |G k )=1 and \((v_{i},v_{j}) \in \mathcal {E}\) with \(\mathcal {V}_{1,j}\). We rewrite Eq. 1 (see Section “Preliminaries and problem definition”) as

$$Z_{j}= p_{j} t^{|\mathcal{V}_{1,j}|} \prod_{\substack {v_{i} \in \mathcal{V}_{1} - \mathcal{V}_{1,j} \\ (v_{i},v_{j}) \in \mathcal{E}}} x_{i} + q_{j}. $$

The above equation means that before we do any polynomial multiplication, we first apply the collapse operator ϕ i (i, such that \(v_{i} \in \mathcal {V}_{1,j}\)) to Z j . This preemptive collapsation prevents the exponential growth in the number of collapsation operations for those v i satisfying the conditions above. For example, in the example bipartite graph (see Fig. 4), for edge e8, its original edge polynomial Z8=p8x6+q8 can be rewritten as Z8=p8t+q8 to avoid applying the collapse operation ϕ6() in any further polynomial multiplication.

Optimization on \(\mathcal {V}_{2}\) The order in which edge polynomials are multiplied has a great effect on the cost of polynomial multiplication. Recall from “Preliminaries and problem definition section” that each variable x r collapses only after the multiplication of the final edge polynomial for x r has been completed. Following from this observation, our second strategy conjectures that increasing the number of collapsing variables after the product of a given number of edge polynomials reduces both the running time and the amount of memory needed to store the x-polynomial. We explain this on the bipartite graph in Fig. 4. In our example, to simplify our notation, we will only consider the optimization on \(\mathcal {V}_{2}\) and ignore the impact of the optimization on \(\mathcal {V}_{1}\) described above. We have four edge polynomials in total. If we multiply four edge polynomials in the order of Z1,Z2,Z4,Z8, no collapsation takes place until we multiply Z4. This is because Z4 is the final edge polynomial for x1, x2, x3 and x5. As a result, this ordering requires in total 32 collapses (i.e., number of polynomial terms is 23= 8, and we collapse each of x1, x2, x3 and x5 resulting in 8+8+8+8 operations). Adding the collapsation cost of the last edge polynomial, 24=16, we achieve 32 + 16 = 48 operations in total. Now, let us analyse the cost of the same product when we multiply the edge polynomials in the order of (Z4,Z2,Z8,Z1). In this ordering, Z4 is the final edge polynomial for x5. Thus, we need another 21 = 2 operations for variable x5. The following edge polynomial Z2 is the final edge polynomial for variables x2 and x3. Therefore, once we multiply Z2, we can collapse variables x2 and x3. Thus, for variables x2 and x3, only 8 collapses are needed (i.e., there are 4 polynomial terms and 2 collapse operators). Variables x6 and x1 collapses after the product of Z8 and Z1 leading to eight and sixteen more collapse operations respectively. In total, this ordering yields only 34 (i.e., 2+8+8+16) collapses. By reordering the edge polynomials, we reduce not only the time for collapsation, but also the memory space for storing the variables. Furthermore, as we explain below, an effective ordering has potential to avoid the loss computation without losing the accuracy of the result. Next, we formally define the problem of ordering of the edge polynomials.

Definition 3

ORDERING OF THE EDGE POLYNOMIALS. Assume a bipartite graph \(G_{k} = (\mathcal {V}_{1}, \mathcal {V}_{2}, \mathcal {E})\) and a specified loss value denoted by ε are given. Each node \(v_{i} \in \mathcal {V}_{1}\) has a unique variable x i and a collapse operator ϕ i . Each node \(v_{j} \in \mathcal {V}_{2}\) has an edge polynomial Z j . For each collapse operator ϕ i , let us denote the number of the polynomial terms it has been applied to with \(N_{\phi _{i}}\). Let us denote a permutation of the integers in the \([1:|\mathcal {V}_{2}|]\) interval with π=[π1, π2, …, \(\pi _{|\mathcal {V}_{2}|}]\). Our problem is to find the ordering π, for which r, such that after multiplying the first r polynomials in the order of π, we have f(B k )≥ε and \(r|\mathcal {V}_{1}|2^{r} + \sum _{s=1}^{|\mathcal {V}_{1}|}N_{\phi _{s}}\) is minimized.

Notice that in the definition above, we aim to minimize the number of edge polynomials (i.e., variable r). Also if there are multiple orderings with the same number of edge polynomials, we prefer the one that requires the least collapsation operations (i.e., \({\sum \nolimits }_{s=1}^{|\mathcal {V}_{1}|}N_{\phi _{s}}\)).

One straightforward method to solve this problem is to calculate the collapsation cost for all possible orderings of the edge polynomials and choose the one with the smallest cost. This, however, is infeasible as there are \(|\mathcal {V}_{2}|\)! alternative orderings. Here, we develop a greedy iterative algorithm to quickly estimate an ordering. Briefly, at each iteration, our algorithm chooses the edge which contributes to the collapsation of most variables. We explain our algorithm using the bipartite graph shown in Fig. 4.

Our algorithm maintains two matrices. We denote these two matrices at the ith iteration with W i and D i . At each stage, we update the W i matrix and generate a D i matrix based on W i . We will explain these two matrices in detail later. We choose a suitable edge polynomial using the D i matrix, and repeat this process until the last edge polynomial.

We first explain the two matrices above. The first matrix denoted by W i maintains the relationship between the x variables and edge polynomials. Let us denote the rth row and sth column of W i with W i [r,s]. Also, let us denote the bipartite graph of H k at the ith iteration with \(G_{k}^{i}\). If the x-polynomial Z s contains the variable x r , we set \(W_{i}[r, s] = 1/deg\left (v_{r}| G_{k}^{i}\right)\). Otherwise, we set W i [r,s]=0. Conceptually, this number indicates the contribution of the edge polynomial Z s to collapse variable x r . For instance, W i [r,s]=1 implies that Z s is the final edge polynomial of x r . Figure 5 presents matrix W1 corresponding to the bipartite graph in Fig. 4. Here, Z2 and Z4 contain x2. As a result W1[2,2]=W1[2,3]=1/2.

Fig. 5
figure 5

The two matrices W1 and D1 we maintained to order the edge polynomials

We construct matrix D i from W i . This matrix counts different levels of contributions of each edge polynomial. It has \(|\mathcal {V}_{2}|\) rows and \(\max _{u \in \mathcal {V}_{1}}\{deg(u | G_{k}^{i})\}\) columns. We set the entry D i [r,s] to the product of the number of entries in the rth column of W i having the value 1/s and the edge probability in Z r . For example, in the matrix W1 in Fig. 5, Z2 (i.e., column 2) contributes two variables at value 1/2 and one variable 1/3. As a result, we set the second row of D1 to [0, 2 p2, p2].

At the ith iteration, using the matrix D i , we choose the next edge polynomial for multiplication as follows. We start by looking at the first column of D i , and choose the row (i.e., edge polynomial) with the largest value. If there are multiple such rows, we use the second column of D i among those polynomials. We repeat this process until we find such a row with the largest value. If there are still more than one rows after reaching the last column of D i , we randomly choose the edge polynomial corresponding to one of them. For example, in Fig. 5, both Z4 and Z8 has values in the first column. We choose one of them depending on their edge probability. If they have the same edge probability (i.e., p4=p8), we look at their values in the second column, where Z4 should be selected.

At the ith iteration, assume that we pick the edge polynomial Z r . We update \(G_{k}^{i}\) for the next iteration by removing the node v r from \(G_{k}^{i}\) along with all of its incident edges.

Overcoming memory bottleneck

The number of terms of the x-polynomial can grow exponentially, particularly when collapsation does not take place. This quickly leads to memory bottleneck especially for dense overlap graphs. In this section, we present a recursive strategy to overcome this bottleneck.

The main idea behind this strategy is as follows. Given a new edge polynomial, we multiply it with only a subset of the current x-polynomial terms, while deferring others. After completing the multiplication of all edge polynomials, we multiply the deferred polynomial terms using last-in, first-out policy. Figure 6 depicts this idea. Here, the shaded bar represents the subset of terms of the current x-polynomial to be multiplied with the next edge polynomial (e.g., Zi+1). Let us denote the number of terms in this subset with N1 and the number of deferred terms with N2 prior to multiplying with Zi+1. After multiplication with Zi+1, the number of terms become 2N1+N2. Repeating this process, after multiplying j edge polynomials, we have only (j+1)N1+N2 terms. Notice that this is a dramatic improvement over the original algorithm which creates 2j(N1+N2) terms. The number of deferred terms is governed by the amount of available memory. That is we choose N1 as large as possible while the maximum term count ((j+1)N1+N2) remains less than available memory.

Fig. 6
figure 6

The change of the size of the polynomial terms. Bar with solid line: new generated polynomial terms after multiplying the current edge polynomial; bar with dashed line: deferred polynomial terms; shaded bar: polynomial terms that are chosen to multiply

Results and discussion

In this section, we experimentally evaluate the performance of ProMotE on synthetically generated (“Evaluation on synthetic networks section”) and real networks (“Evaluation on cancer networks” to “Evaluation on neurodegenerative disease networks section”). We run our experiments on a Linux server which has AMD Opteron 24 core processors (up to 1.4GHZ) and 32GB memory.

Evaluation on synthetic networks

Running time evaluation

The key computational challenge we aim to tackle in this paper is to scale to large network sizes while existing methods fail. Here, we evaluate how well we achieved this goal. We compare the running time of ProMotE to that of Sarkar et al. [24] as this is the most recent and most efficient algorithm in the literature to the best of our knowledge. As these two methods have the similar expected motif count, we do not report their motif count. We test both methods on synthetic networks. We generate random networks with growing number of nodes using three random network models, namely Erdős Rényi (ER) [25], Watts Strogatz (WS) [26] and Barabási-Albert (BA) [27] models. We synthetically assign a probability value generated from the uniform distribution in the interval (0,1) to each edge of networks. We set the average node degree to two. For each number of nodes, we repeat the experiments for 20 random networks. We measure the total running time for four motif patterns (see Fig. 7). These motifs are also used in the study by Sarkar et al. [24]. To avoid the potential outlier, for the 20 networks of each network size, we exclude the two networks with largest running time, and another two with the smallest running time. For the remaining networks, we report the average, minimum and maximum values. For each method, we report the running time on networks if the algorithm completes in less than 10,000 seconds. Figure 8 presents the results.

Fig. 7
figure 7

The four motifs with two and three edges

Fig. 8
figure 8

Running time on synthetic networks generated by ER, WS, and BA models respectively. The running times are reported in seconds and represented in log-scale. a ER model b WS model c BA model

We observe that our method is several orders of magnitude faster than Sarkar et al. for all parameter settings. As the network size increases, the gap between the running times of two methods grows. This indicates that our optimization strategies are greatly helpful on large networks. The advantage of ProMotE stands out the most for the networks generated using ER and BA models. For instance, on networks generated using ER model (see Fig. 8a), ProMotE successfully scales to massive network sizes (i.e., thousands of nodes). On the other hand, Sarkar et al. fails to run beyond 100 nodes. This implies that ProMotE is not only practical but it is also essential to study real networks, as the size of real networks is often large. Furthermore, we observe that the topological characteristics of the network greatly affect the cost of counting independent motifs. For the same network size, we observe a dramatic increase in running time as we move from WS model to ER model and then to BA model. ER model generates networks with a small average shortest path length along with a small clustering coefficient. WS model however builds networks with both short average paths and strong clustering coefficients. Thus, networks generated by ER model are more likely to have isolated nodes, which in turn make the remaining connected components much denser than those in networks generated by WS model. Dense networks however result in more computation. As a result, ProMotE runs much faster on networks of WS model. For the BA model, it constructs the so called scale-free networks characterized by a highly heterogeneous degree distribution, which follows power law. Thus, there exist more hub nodes in networks of BA model, which result in more overlapping motif embeddings. As a result, the overlap graphs of networks of BA model are much more complicated, which in turn introduce a large quantity of computation. Recall that the BA model generates scale free networks. Thus it is expected to generate networks that resemble real data better than the other two models. This indicates that counting independent motifs in real networks is a challenging problem, and ProMotE is needed to study them in practical time.

Comparison against the literature

In the literature, current approaches to the probabilistic networks often transform probabilistic networks to deterministic networks first, and then apply methods for deterministic networks. These approaches include ignoring probability values [28, 29], considering edges with probability values above a given threshold [30], and sampling the probabilistic network by doing a Bernoulli trial with probability p i for each edge e i [31]. For simplicity, we denote these three approaches with binary, threshold and sampling method respectively. For each of these method, after transforming probabilistic networks to deterministic networks, we apply the method in the literature [19] to find the motif count, which heuristically selects motifs with the least number of overlapping embeddings. As these methods are not specifically devised to solve the problem in this paper and they finally work on deterministic networks, the performance of ProMotE in terms of running time is significantly worse than these methods. As a result, we compare our method against these methods only in terms of expected motif count.

Recall that the threshold method maintains the set of edges with probability value above a given threshold value and removes the remaining edges. Thus, the outcome of this method depends on the threshold value. Here, we first evaluate the performance of the threshold method for varying values of threshold. We run our experiment on synthetic networks with WS model of various network sizes, 1000, 5000 and 10000. In particular, for each network size, we repeat the experiments for 20 random networks. We vary the threshold value from 0 to 0.7 at increments of 0.1. For each threshold value setting, we run experiment on all generated networks and report the average motif count. Figure 9 plots the results.

Fig. 9
figure 9

The expected motif count of our method and threshold method on synthetic networks

We observe that the motif count of the threshold method first grows with the increasing threshold value. It then falls sharply. It obtains the peak value when the threshold is 0.2. This is possibly because too small/large threshold leads to the retaining/removing most of the edges of the network. Either case may make the threshold method underutilize the information available in the interaction probabilities. As a result, a suitable threshold value is necessary for the threshold method. However, the varying distribution of edge probabilities of different probabilistic networks makes it is difficult to set a fixed threshold value for the threshold method. In the rest of our experiments, we fix the threshold value of the threshold method to 0.2 as it obtains the best value on the average across a broad spectrum of parameter settings.

Next, we compare our method with binary, threshold and sampling methods. We test these methods on synthetic networks with different network models of various network sizes. To ensure the reliability of our results, for each parameter, we conduct experiments on 20 different networks and report the average. Specifically, for sampling method, as each running on the same network may have the different value, to get a reliable result, we run 10 times on each network and report the average. Figure 10 reports the result. Our results demonstrate that our method has the highest motif count for all network sizes with various network models. Moreover, the gap between ProMotE and other methods increases with the growing number of nodes. This is very promising since we expect to have more number of nodes in real networks. For instance, on the network with WS network model of size 10,000, ProMotE has 13.2 to 95.4% more motif counts than other methods. The threshold method achieves the second best motif count. That said, it is worth noting that we give a positive bias towards the threshold method since we fix the threshold to the value which maximized its motif count in our previous experiments. Sampling method has overall worst performance across different network sizes. The reason behind is that finding a set of independent embeddings that yields the maximum expected number of occurrences in a probabilistic network is a nonlinear function. Although, the sampling approach can provide provable confidence intervals for estimating linear functions such as sum and average, it fails to do that for nonlinear functions such as counting independent motifs in probabilistic networks. Due to the nonlinear nature of our problem, a sampling approach is expected to produce inaccurate results. Furthermore, we observe that the expected motif count of all methods grows with the increasing network size. This is because the network with larger size is expected to have more motifs.

Fig. 10
figure 10

Expected motif count on synthetic networks generated by ER, WS, and BA models respectively. a ER model b WS model c BA model

In summary, our method is very efficient and accurate on counting independent motif in probabilistic networks.

Evaluation on cancer networks

In order to observe the performance of our method on real networks, we apply our algorithm on six cancer datasets from the MSigDB database [32] for Homo Sapiens. We extract genes from the C2:curated gene sets of MSigDB. We then feed each cancer gene set into the STRING database [16] to generate its interaction network. We use the gene co-expression values present in the STRING dataset for these networks to compute their interaction probabilities. Specifically, for a pair of nodes, the interaction probability between them is computed as the Pearson’s correlation coefficient. In the literature, there are also other ways to compute interaction probabilities. For example, Sharan et al. [33] addressed this problem by utilizing features like the volume of evidence present for the interaction, gene expression correlation, and network topology to learn the edge probabilities. Gabr et al. [34] used end-to-end signal reachability probabilities between pairs of genes to guide the computation of the edge probabilities. All these studies use transcriptional values in their computations in slightly different ways. Table 2 presents the dataset details for each cancer type. We measure independent motif counts for the four basic patterns listed in Fig. 7.

Table 2 Real networks from cancer dataset used in our experiments; number of nodes and edges, average node degree and clustering coefficient

Figure 11a presents the running time of ProMotE. In addition, we also plot the average degree of each network to display the effect of running time on network size. Our results demonstrate that ProMotE successfully identifies independent motifs in practical time (1.5 secs to less than 2.2 h) for all networks. It is worth noting that Sarkar et al.’s method does not scale to these network sizes.

Fig. 11
figure 11

a Running time on cancer networks. The x-axis shows the cancer type. The y-axis on the left and right show the running time in seconds and average degree of each network respectively. b The \(\mathcal {F}_{2}\) (i.e. number of non-overlapping instances) count of each of the four basic motifs in real network. The x-axis shows the cancer type. The y-axis shows the motif \(\mathcal {F}_{2}\) count

Figure 11b shows the number of non-overlapping instances of the four basic patterns present in each of the cancer networks. We observe that the pattern M1 is the most abundant topology in all networks. This is expected as M1 is a subgraph of M2, M3, and M4. The other three motifs have similar counts. We also observe that the motif count does not necessarily grow with the network size. For instance Thyroid cancer has the least number of nodes and edges, yet it contains more non-overlapping motif instances than almost all the other networks in our dataset. This implies that the topology of the network governs the motif distribution. Recall that the running time of ProMotE tends to grow with network size on the cancer networks (see Fig. 11a). This implies that the running time of ProMotE does not strongly depend on the independent motif count as well.

Evaluation on neurodegenerative disease networks

Next, we evaluate ProMotE on three neurodegenerative disease networks; Alzheimer’s, Huntington’s and Parkinson’s disease, hereafter referred to as AD, HD and PD respectively. We obtain this dataset from the MSigDB database similar to the cancer networks (see “Evaluation on cancer networks section”). Table 3 lists the dataset details. One major difference between this and the cancer dataset is that the neurodegenerative networks are both larger in size and average degree. It is worth noting that the AD network is a subgraph of that of HD network. Also, all three networks share substantial amount of edges (details later in this section). We focus on motif M2 (the loop pattern) in this experiment.

Table 3 Real networks from neurodegenerative dataset used in our experiment, the disease name, numbers of nodes and edges, average node degree and clustering coefficient

Table 4 shows the results. We observed that AD and HD networks yield the same number of embeddings and \(\mathcal {F}_{2}\) count. Totally, 37 to 56% of the genes participate in at least one motif embedding. PD network has the largest motif count and fraction of genes in motif embeddings. Such large motif count indicates that these networks are organized largely as a combination of small loops. Finally, our method completed counting motifs in slightly over half an hour per network. This demonstrates that our method scales up to very large network sizes and densities.

Table 4 Results on real networks from neurodegenerative dataset used in our experiment, the disease name, unique number of genes in the result set, number of embeddings, \(\mathcal {F}_{2}\) measure and the running time

Next, we take a closer look at the distribution of the shared edges, which appear in a motif embedding, across different diseases. Figure 12 presents the distribution. We observe that the edges present in AD and HD are exactly the same. PD network however deviates from the other two by about 6%. This implies that all three diseases possibly are governed by very similar processes, with PD having slight variations.

Fig. 12
figure 12

The number of common edges present in the three disease networks for independent embeddings of the triangle motif pattern

Next, we focus on the statistical significance of the biological processes and molecular functions of the genes that comprise the result set for the three neurodegenerative diseases for M2 pattern. To do this, we perform gene ontology analysis using PANTHER [35]. For each network, we use all the genes appearing in an embedding of M2. We filter the Gene Ontology (GO) terms with p-value above 0.025. We then search each of the remaining GO term in PubMed with the disease corresponding to that network (i.e., AD, HD, or PD). Table 5 shows the results for which at least one reference publication exists.

Table 5 Gene ontology analysis of the genes appearing in the independent embeddings of the triangle pattern in the three disease networks with publications, and the diseases associated with the ontology terms

Our results demonstrate that ProMotE identifies disease specific functional properties. For instance, mitochondria often referred to as the power house of the cell is responsible for many important cellular functions especially neuronal viability. Therefore, aberrations in mitochondrial processes have potential to lead to neuronal disorder. Four distinct pathways carry out mental processing for brain metabolism, two of them being tricarboxylic acid cycle (TCA) and electron transport chain (the other two are glycolysis, pentose shunt). These pathways are affected by direct modification of the enzymes or alterations at the gene expression level. TCA is responsible for producing reducing equivalents in the form of reduced nicotinamide adenine dinucleotide (NADH) and reduced flavin adenine dinucleotide (FADH2). Altered activities of the TCA cycle enzymes result in imbalance which is associated with AD-related changes in metabolism.

Another important function is the production of adenosine triphosphate (ATP) through the combined effects of TCA and the respiratory chain, also known as electron transport chain. The respiratory chain requires two electron carriers: ubiquinone/coenzyme Q and cytochrome c. Also, it consists of five protein complexes: NADH dehydrogenase-ubiquinone oxidoreductase (complex I), succinate dehydrogenase-ubiquinone oxidoreductase (complex II), ubiquinone-cytochrome c oxidoreductase (complex III), cytochrome c oxidase (complex IV), and ATP synthase (complex V). Production of ATP involves two coordinated mechanisms: electrons received from energy substrates such as NADH are transported through the mitochondrial complexes towards molecular oxygen, producing water; at the same time electrochemical gradient is generated by driving protons across the mitochondrial inner membrane by I, III, and IV protein complexes. Finally, ATP is produced by the accumulation of these protons into the matrix with the help of complex V (ATP synthase). Altered mitochondrial respiration, especially at the level of complex I thus associates with PD.

Conclusions

In this paper, we developed ProMotE, an efficient method to count non-overlapping motif instances in probabilistic networks. This method uses a polynomial model to capture the dependencies between overlapping embeddings. We proposed three strategies to avoid computation of loss value, to expedite collapsation of polynomial terms, and to overcome the memory bottleneck faced when applied to large networks. Our experiments on both synthetic and real networks demonstrate that our method scales to large networks and identifies the key functional characteristics of cancer and disease phenotypes.

Abbreviations

AD:

Alzheimer’s disease

ATP:

Adenosine triphosphate

BA:

Barabási-Albert

ER:

Erdős Rényi

FADH2:

Reduced flavin adenine dinucleotide

HD:

Huntington’s disease

NADH:

Reduced nicotinamide adenine dinucleotide

ProMotE:

Probabilistic motif embedding

PD:

Parkinson’s disease

TCA:

Tricarboxylic acid cycle

WS:

Watts Strogatz

References

  1. Bray D, et al.Protein molecules as computational elements in living cells. Nature. 1995; 376(6538):307–12.

    Article  PubMed  CAS  Google Scholar 

  2. Flajolet M, Rotondo G, Daviet L, Bergametti F, Inchauspé G, Tiollais P, Transy C, Legrain P. A genomic approach of the hepatitis c virus generates a protein interaction map. Gene. 2000; 242(1):369–79.

    Article  PubMed  CAS  Google Scholar 

  3. Uetz P, Giot L, Cagney G, Mansfield TA, Judson RS, Knight JR, Lockshon D, Narayan V, Srinivasan M, Pochart P. A comprehensive analysis of protein–protein interactions in saccharomyces cerevisiae. Nature. 2000; 403(6770):623–7.

    Article  PubMed  CAS  Google Scholar 

  4. Girvan M, Newman ME. Community structure in social and biological networks. Proc Natl Acad Sci. 2002; 99(12):7821–6.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  5. Albert R, Jeong H, Barabási A-L. Error and attack tolerance of complex networks. Nature. 2000; 406(6794):378–82.

    Article  PubMed  CAS  Google Scholar 

  6. Green ML, Karp PD. A bayesian method for identifying missing enzymes in predicted metabolic pathway databases. BMC Bioinformatics. 2004; 5(1):1.

    Article  Google Scholar 

  7. Milo R, Shen-Orr S, Itzkovitz S, Kashtan N, Chklovskii D, Alon U. Network motifs: simple building blocks of complex networks. Science. 2002; 298(5594):824–7.

    Article  PubMed  CAS  Google Scholar 

  8. Wang P, Lü J, Yu X. Identification of important nodes in directed biological networks: A network motif approach. PLoS ONE. 2014; 9(8):106132.

    Article  Google Scholar 

  9. Hu Y, Flockhart I, Vinayagam A, Bergwitz C, Berger B, Perrimon N, Mohr SE. An integrative approach to ortholog prediction for disease-focused and other functional studies. BMC Bioinformatics. 2011; 12(1):1.

    Article  CAS  Google Scholar 

  10. Shen-Orr SS, Milo R, Mangan S, Alon U. Network motifs in the transcriptional regulation network of escherichia coli. Nat Genet. 2002; 31(1):64–68.

    Article  PubMed  CAS  Google Scholar 

  11. Garey MR, Johnson DS. Computers and Intractability: A Guide to the Theory of NP-Completeness. New York: WH Freeman; 1979.

    Google Scholar 

  12. Bader JS, Chaudhuri A, Rothberg JM, Chant J. Gaining confidence in high-throughput protein interaction networks. Nat Biotechnol. 2004; 22(1):78–85.

    Article  PubMed  CAS  Google Scholar 

  13. Ryba T, Hiratani I, Sasaki T, Battaglia D, Kulik M, Zhang J, Dalton S, Gilbert DM. Replication timing: a fingerprint for cell identity and pluripotency. PLoS Comput Biol. 2011; 7(10):1002225.

    Article  CAS  Google Scholar 

  14. Schübeler D, Scalzo D, Kooperberg C, van Steensel B, Delrow J, Groudine M. Genome-wide dna replication profile for drosophila melanogaster: a link between transcription and replication timing. Nat Genet. 2002; 32(3):438–42.

    Article  PubMed  CAS  Google Scholar 

  15. Ceol A, Aryamontri AC, Licata L, Peluso D, Briganti L, Perfetto L, Castagnoli L, Cesareni G. MINT, the molecular interaction database. Nucleic Acids Res. 2009; 38(suppl_1):D532–D539.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  16. Szklarczyk D, Franceschini A, Kuhn M, Simonovic M, Roth A, Minguez P, Doerks T, Stark M, Muller J, Bork P. The STRING database in 2011: functional interaction networks of proteins, globally integrated and scored. Nucleic Acids Res. 2010; 39(suppl_1):D561–D568.

    PubMed  PubMed Central  Google Scholar 

  17. Inokuchi A, Washio T, Motoda H. Complete mining of frequent patterns from graphs: Mining graph data. Mach Learn. 2003; 50(3):321–54.

    Article  Google Scholar 

  18. Kuramochi M, Karypis G. Frequent subgraph discovery. In: Data Mining, 2001. ICDM 2001, Proceedings IEEE International Conference On. New Jersey: IEEE: 2001. p. 313–320.

    Google Scholar 

  19. Schreiber F, Schwöbbermeyer H. Frequency concepts and pattern detection for the analysis of motifs in networks. In: Transactions on Computational Systems Biology. Heidelberg: Springer: 2005. p. 89–104.

    Google Scholar 

  20. Tran NH, Choi KP, Zhang L. Counting motifs in the human interactome. Nat Commun. 2013; 4:2241.

    Article  PubMed  CAS  Google Scholar 

  21. Todor A, Dobra A, Kahveci T. Counting motifs in probabilistic biological networks. In: ACM Conference on Bioinformatics, Computational Biology and Health Informatics. New York: ACM: 2015. p. 116–125.

    Google Scholar 

  22. Kuramochi M, Karypis G. Finding frequent patterns in a large sparse graph. Data Min Knowl Disc. 2005; 11(3):243–71.

    Article  Google Scholar 

  23. Klukas C, Koschützki D, Schreiber F. Graph pattern analysis with patterngravisto. J Graph Algorithm Appl. 2005; 9(1):19–29.

    Article  Google Scholar 

  24. Sarkar A, Ren Y, Elhesha R, Kahveci T. Counting independent motifs in probabilistic networks. In: ACM Conference on Bioinformatics, Computational Biology and Health Informatics. New York: ACM: 2016. p. 231–240.

    Google Scholar 

  25. Erdős P, Rényi A. On random graphs. Publ Math Debr. 1959; 6:290–7.

    Google Scholar 

  26. Watts DJ, Strogatz SH. Collective dynamics of ’small-world’ networks. Nature. 1998; 393(6684):440–2.

    Article  PubMed  CAS  Google Scholar 

  27. Barabási A-L, Albert R. Emergence of scaling in random networks. Science. 1999; 286(5439):509–12.

    Article  PubMed  Google Scholar 

  28. Marcotte EM, Pellegrini M, Thompson MJ, Yeates TO, Eisenberg D. A combined algorithm for genome-wide prediction of protein function. Nature. 1999; 402(6757):83–86.

    Article  PubMed  CAS  Google Scholar 

  29. Schwikowski B, Uetz P, Fields S. A network of protein–protein interactions in yeast. Nat Biotechnol. 2000; 18(12):1257–61.

    Article  PubMed  CAS  Google Scholar 

  30. Poisot T, Cirtwill AR, Cazelles K, Gravel D, Fortin M-J, Stouffer DB. The structure of probabilistic networks. Methods Ecol Evol. 2015; 7(3):303–12.

    Article  Google Scholar 

  31. Huang H, Zhang LV, Roth FP, Bader JS. Probabilistic paths for protein complex inference. In: Systems Biology and Computational Proteomics. Heidelberg: Springer: 2007. p. 14–28.

    Google Scholar 

  32. Liberzon A, Subramanian A, Pinchback R, Thorvaldsdóttir H, Tamayo P, Mesirov JP. Molecular signatures database (msigdb) 3.0. Bioinformatics. 2011; 27(12):1739–40.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  33. Sharan R, Suthram S, Kelley RM, Kuhn T, McCuine S, Uetz P, Sittler T, Karp RM, Ideker T. Conserved patterns of protein interaction in multiple species. Proc Natl Acad Sci U S A. 2005; 102(6):1974–9.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  34. Gabr H, Rivera-Mulia JC, Gilbert DM, Kahveci T. Computing interaction probabilities in signaling networks. EURASIP J Bioinforma Syst Biol. 2015; 2015(1):10.

    Article  Google Scholar 

  35. Mi H, Poudel S, Muruganujan A, Casagrande JT, Thomas PD. Panther version 10: expanded protein families and functions, and analysis tools. Nucleic Acids Res. 2016; 44(D1):336–42.

    Article  CAS  Google Scholar 

  36. Perier C, Vila M. Mitochondrial biology and parkinson’s disease. Cold Spring Harb Perspect Med. 2012; 2(2):009332.

    Article  CAS  Google Scholar 

  37. VanDuyn N, Settivari R, LeVora J, Zhou S, Unrine J, Nass R. The metal transporter smf-3/dmt-1 mediates aluminum-induced dopamine neuron degeneration. J Neurochem. 2013; 124(1):147–57.

    Article  PubMed  CAS  Google Scholar 

  38. Fiskum G, Starkov A, Polster BM, Chinopoulos C. Mitochondrial mechanisms of neural cell death and neuroprotective interventions in parkinson’s disease. Ann N Y Acad Sci. 2003; 991(1):111–119.

    Article  PubMed  CAS  Google Scholar 

  39. Kim S, Vlkolinsky R, Cairns N, Lubec G. Decreased levels of complex iii core protein 1 and complex v β chain in brains from patients with alzheimer’s disease and down syndrome. Cell Mol Life Sci CMLS. 2000; 57(12):1810–6.

    Article  PubMed  CAS  Google Scholar 

  40. Shi Q, Gibson GE. Oxidative stress and transcriptional regulation in alzheimer’s disease. Alzheimer Dis Assoc Disord. 2007; 21(4):276.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

  41. Zubenko GS, Moossy J, Claassen D, Martinez AJ, Rao GR. Brain regional analysis of nadh-cytochrome c reductase activity in alzheimer’s disease. J Neuropathol Exp Neurol. 1990; 49(3):206–14.

    Article  PubMed  CAS  Google Scholar 

  42. Cardoso SM, Proença MT, Santos S, Santana I, Oliveira CR. Cytochrome c oxidase is decreased in alzheimer’s disease platelets. Neurobiol Aging. 2004; 25(1):105–10.

    Article  PubMed  CAS  Google Scholar 

  43. Liang WS, Reiman EM, Valla J, Dunckley T, Beach TG, Grover A, Niedzielko TL, Schneider LE, Mastroeni D, Caselli R, et al. Alzheimer’s disease is associated with reduced expression of energy metabolism genes in posterior cingulate neurons. Proc Natl Acad Sci. 2008; 105(11):4441–6.

    Article  PubMed  PubMed Central  Google Scholar 

  44. Fattoretti P, Balietti M, Casoli T, Giorgetti B, Di Stefano G, Bertoni-Freddari C, Lattanzio F, Sensi S. Decreased numeric density of succinic dehydrogenase-positive mitochondria in ca1 pyramidal neurons of 3xtg-ad mice. Rejuvenation Res. 2010; 13(2-3):144–147.

    Article  PubMed  CAS  Google Scholar 

  45. Wang C, Wang Z, Xie J, Wang T, Wang X, Xu Y, Cai J. Dl-3-n-butylphthalide-induced upregulation of antioxidant defense is involved in the enhancement of cross talk between creb and nrf2 in an alzheimer’s disease mouse model. Neurobiol Aging. 2016; 38:32–46.

    Article  PubMed  CAS  Google Scholar 

  46. Isaya G. Mitochondrial iron-sulfur cluster dysfunction in neurodegenerative disease. Front Pharmacol. 2014; 5:29.

    Article  PubMed  PubMed Central  CAS  Google Scholar 

Download references

Acknowledgements

We would like to thank the reviewers for their insightful comments and suggestions.

Funding

Publication of this article was funded by NSF under grant DBI-1262451. Neither funding body played any role in the design of this study and collection, analysis, and interpretation of data or in writing the manuscript.

Availability of data and materials

The datasets generated and/or analysed during this study along with the code for our models and instructions for their use are available under open licenses at https://github.com/KahveciLab/probabilisticIndependentMotif.

Author information

Authors and Affiliations

Authors

Contributions

Developed the method: YR, AS and TK. Conceived and Designed the experiments: YR, AS and TK. Performed the data analysis: YR, AS and TK. Performed the experiments and interpreted the results: YR, AS and TK. Contributed to the writing of the manuscript: YR, AS and TK. All authors read, provided comment and approved the final manuscript.

Corresponding author

Correspondence to Yuanfang Ren.

Ethics declarations

Ethics approval and consent to participate

Not applicable.

Consent for publication

Not applicable.

Competing interests

The authors declare that they have no competing interests.

Publisher’s Note

Springer Nature remains neutral with regard to jurisdictional claims in published maps and institutional affiliations.

Rights and permissions

Open Access This article is distributed under the terms of the Creative Commons Attribution 4.0 International License (http://creativecommons.org/licenses/by/4.0/), which permits unrestricted use, distribution, and reproduction in any medium, provided you give appropriate credit to the original author(s) and the source, provide a link to the Creative Commons license, and indicate if changes were made. The Creative Commons Public Domain Dedication waiver (http://creativecommons.org/publicdomain/zero/1.0/) applies to the data made available in this article, unless otherwise stated.

Reprints and permissions

About this article

Check for updates. Verify currency and authenticity via CrossMark

Cite this article

Ren, Y., Sarkar, A. & Kahveci, T. ProMotE: an efficient algorithm for counting independent motifs in uncertain network topologies. BMC Bioinformatics 19, 242 (2018). https://doi.org/10.1186/s12859-018-2236-9

Download citation

  • Received:

  • Accepted:

  • Published:

  • DOI: https://doi.org/10.1186/s12859-018-2236-9

Keywords