58
Biological Networks Analysis Dijkstra’s algorithm and Degree Distribution Genome 373 Genomic Informatics Elhanan Borenstein

Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Embed Size (px)

Citation preview

Page 1: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Biological Networks Analysis

Dijkstra’s algorithm and Degree Distribution

Genome 373

Genomic Informatics

Elhanan Borenstein

Page 2: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Networks: Networks vs. graphs

The Seven Bridges of Königsberg

A collection of nodes and links

Directed/undirected; weighted/non-weighted, …

Many types of biological networks Transcriptional regulatory networks

Metabolic networks

Protein-protein interaction (PPI) networks

A quick review

Page 3: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

The Bacon Number Game Tropic Thunder

(2008)

Frost/Nixon Tropic

Thunder

Iron Man

Tom Cruise Robert Downey Jr. Frank Langella Kevin Bacon

Tropic Thunder

Iron Man Proof Flatliners

Tom Cruise Robert Downey Jr. Gwyneth Paltrow Kevin Bacon Hope Davis

Page 4: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Find the minimal number of “links” connecting node A to node B in an undirected network

How many friends between you and someone on FB (6 degrees of separation, Erdös number, Kevin Bacon number)

How far apart are two genes in an interaction network

What is the shortest (and likely) infection path

Find the shortest (cheapest) path between two nodes in a weighted directed graph

GPS; Google map

The shortest path problem

Page 5: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Dijkstra’s Algorithm

"Computer Science is no more about computers than astronomy is about telescopes."

Edsger Wybe Dijkstra 1930 –2002

Page 6: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Solves the single-source shortest path problem:

Find the shortest path from a single source to ALL nodes in the network

Works on both directed and undirected networks

Works on both weighted and non-weighted networks

Approach:

Maintain shortest path to each intermediate node

Greedy algorithm

… but still guaranteed to provide optimal solution !!

Dijkstra’s algorithm

Page 7: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

1. Initialize:

i. Assign a distance value, D, to each node. Set D to zero for start node and to infinity for all others.

ii. Mark all nodes as unvisited.

iii. Set start node as current node.

2. For each of the current node’s unvisited neighbors:

i. Calculate tentative distance, Dt, through current node.

ii. If Dt smaller than D (previously recorded distance): D Dt

iii. Mark current node as visited (note: shortest dist. found).

3. Set the unvisited node with the smallest distance as the next "current node" and continue from step 2.

4. Once all nodes are marked as visited, finish.

Dijkstra’s algorithm

Page 8: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

A simple synthetic network

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

1. Initialize: i. Assign a distance value, D, to each node.

Set D to zero for start node and to infinity for all others. ii. Mark all nodes as unvisited. iii. Set start node as current node.

2. For each of the current node’s unvisited neighbors: i. Calculate tentative distance, Dt, through current node. ii. If Dt smaller than D (previously recorded distance): D Dt iii. Mark current node as visited (note: shortest dist. found).

3. Set the unvisited node with the smallest distance as the next "current node" and continue from step 2.

4. Once all nodes are marked as visited, finish.

Page 9: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Initialization

Mark A (start) as current node

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞

D: ∞

D: ∞

D: ∞

D: ∞ A B C D E F

0 ∞ ∞ ∞ ∞ ∞

Page 10: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Check unvisited neighbors of A

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞

D: ∞

D: ∞

D: ∞

D: ∞ A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0+3 vs. ∞

0+9 vs. ∞

Page 11: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Update D

Record path

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞

D: ∞

D: ∞,9 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

Page 12: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark A as visited …

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞

D: ∞

D: ∞,9 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

Page 13: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark C as current (unvisited node with smallest D)

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞

D: ∞

D: ∞,9 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

Page 14: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Check unvisited neighbors of C

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞

D: ∞

D: ∞,9 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

3+2 vs. ∞

3+4 vs. 9 3+3 vs. ∞

Page 15: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Update distance

Record path

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

Page 16: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark C as visited

Note: Distance to C is final!!

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

Page 17: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark E as current node

Check unvisited neighbors of E

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

Page 18: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Update D

Record path

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17

D: ∞,6

D: ∞,5

D: ∞,9,7

D: 0

A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

Page 19: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark E as visited

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

Page 20: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark D as current node

Check unvisited neighbors of D

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

Page 21: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Update D

Record path (note: path has changed)

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

Page 22: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark D as visited

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

Page 23: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Mark B as current node

Check neighbors

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

Page 24: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

No updates..

Mark B as visited

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7 A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

7 11

Page 25: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

7 11

Mark F as current

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7

Page 26: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

7 11

11

Mark F as visited

Dijkstra’s algorithm

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7

Page 27: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

A B C D E F

0 ∞ ∞ ∞ ∞ ∞

0 9 3 ∞ ∞ ∞

7 3 6 5 ∞

7 6 5 17

7 6 11

7 11

11

We now have:

Shortest path from A to each node (both length and path)

Minimum spanning tree

We are done!

B

C

A

D

E

F

9

3 1

3

4 7 9

2

2

12

5

D: 0

D: ∞,3

D: ∞,17,11

D: ∞,6

D: ∞,5

D: ∞,9,7

Will we always get a tree?

Can you prove it?

Page 28: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Measuring Network Topology

Page 29: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Networks in biology/medicine

food web

gene transfer

infection network

mutation network

neural network

microbial-host association network

disease network

social network

Page 30: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert
Page 31: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Comparing networks We want to find a way to “compare” networks.

“Similar” (not identical) topology

“Common” design principles

We seek measures of network topology that are:

Simple

Capture global organization

Potentially “important”

(equivalent to, for example, GC content for genomes)

Summary statistics

Page 32: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Node degree / rank Degree = Number of neighbors

Node degree in PPI networks correlates with:

Gene essentiality

Conservation rate

Likelihood to cause human disease

Page 33: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Degree distribution P(k): probability that a node

has a degree of exactly k

Potential distributions (and how they ‘look’):

Poisson: Exponential: Power-law:

Page 34: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Govindan and Tangmunarunkit, 2000

The Internet Nodes – 150,000 routers

Edges – physical links

P(k) ~ k-2.3

Page 35: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Barabasi and Albert, Science, 1999

Tropic Thunder (2008)

Movie actor collaboration network

Nodes – 212,250 actors

Edges – co-appearance in a movie

P(k) ~ k-2.3

Page 36: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Yook et al, Proteomics, 2004

Protein protein interaction networks Nodes – Proteins

Edges – Interactions (yeast)

P(k) ~ k-2.5

Page 37: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

C.Elegans (eukaryote)

E. Coli (bacterium)

Averaged (43 organisms)

A.Fulgidus (archae)

Jeong et al., Nature, 2000

Metabolic networks Nodes – Metabolites

Edges – Reactions

P(k) ~ k-2.2±2

Metabolic networks across all kingdoms of life are scale-free

Page 38: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

The power-law distribution Power-law distribution has a “heavy” tail!

Characterized by a small number of highly connected nodes, known as hubs

A.k.a. “scale-free” network

Hubs are crucial:

Affect error and attack tolerance of complex networks (Albert et al. Nature, 2000)

Page 39: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Why do so many real-life networks exhibit a power-law degree distribution?

Is it “selected for”? Is it expected by chance? Does it have anything to do with

the way networks evolve? Does it have functional implications?

?

Page 40: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network Motifs Going beyond degree distribution …

Generalization of sequence motifs

Basic building blocks

Evolutionary design principles?

Page 41: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

R. Milo et al. Network motifs: simple building blocks of complex networks. Science, 2002

What are network motifs? Recurring patterns of interaction (sub-graphs) that are

significantly overrepresented (w.r.t. a background model)

(199 possible 4-node sub-graphs) 13 possible 3-nodes sub-graphs

Page 42: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Finding motifs in the network

1a. Scan all n-node sub-graphs in the real network

1b. Record number of appearances of each sub-graph (consider isomorphic architectures)

2. Generate a large set of random networks

3a. Scan for all n-node sub-graphs in random networks

3b. Record number of appearances of each sub-graph

4. Compare each sub-graph’s data and identify motifs

Page 43: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Finding motifs in the network

Page 44: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network randomization How should the set of random networks be generated?

Do we really want “completely random” networks?

What constitutes a good null model?

Page 45: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network randomization How should the set of random networks be generated?

Do we really want “completely random” networks?

What constitutes a good null model?

Preserve in- and out-degree

Page 46: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network randomization algorithm :

Start with the real network and repeatedly swap randomly chosen pairs of connections (X1Y1, X2Y2 is replaced by X1Y2, X2Y1)

(Switching is prohibited if the either of the X1Y2 or X2Y1 already exist)

Repeat until the network is “well randomized”

X1

X2 Y2

Y1 X1

X2 Y2

Y1

Generation of randomized networks

Page 47: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

S. Shen-Orr et al. Nature Genetics 2002

Motifs in transcriptional regulatory networks

E. Coli network

424 operons (116 TFs)

577 interactions

Significant enrichment of motif # 5

(40 instances vs. 7±3)

X

Y

Z

Master TF

Specific TF

Target

Feed-Forward Loop (FFL)

Page 48: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

aZTYFTXFdtdZ

aYTXFdtdY

zy

y

),(),(/

),(/

A simple cascade has slower shutdown

Boolean Kinetics

A coherent feed-forward loop can act as a circuit that rejects transient activation signals from the general transcription factor and responds only to persistent signals, while allowing for a rapid system shutdown.

What’s so interesting about FFLs

Page 49: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Page 50: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Page 51: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Page 52: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Page 53: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Page 54: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network motifs in biological networks

Why is this network so different?

Why do these networks have similar motifs?

FFL motif is under-represented!

Page 55: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Information Flow vs. Energy Flow

FFL motif is under-represented!

Page 56: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

Network Motifs in Technological Networks

Page 57: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert

R. Milo et al. Superfamilies of evolved and designed networks. Science, 2004

Motif-based network super-families

Page 58: Biological Networks Analysis - elbo.gs.washington.eduelbo.gs.washington.edu/courses/GS_373_18_sp/slides/15-Networks... · A collection of nodes and links ... Iron Man Tom Cruise Robert