oscillatory circuits 1 copyright © 2011: sauro

43
Oscillatory Circuits 1 opyright © 2011: Sauro http://ffrend.sourceforge.net/Help/Parameters/Oscill ator_waveforms.htm http://io9.com/5514840/how-does-the-drinking-bird-wo rk

Upload: archibald-banks

Post on 18-Jan-2016

217 views

Category:

Documents


3 download

TRANSCRIPT

Page 1: Oscillatory Circuits 1 Copyright © 2011: Sauro

1

Oscillatory Circuits

Copyright © 2011: Sauro

http://ffrend.sourceforge.net/Help/Parameters/Oscillator_waveforms.htm

http://io9.com/5514840/how-does-the-drinking-bird-work

Page 2: Oscillatory Circuits 1 Copyright © 2011: Sauro

2

Oscillatory Networks

Page 3: Oscillatory Circuits 1 Copyright © 2011: Sauro

3

Oscillatory Networks

Page 4: Oscillatory Circuits 1 Copyright © 2011: Sauro

4

Modifying a Bistable System

p = defn cell

$Xo -> So; k0*Xo;

So -> S1; k1*So + Vmax*So*S1^n/(15 + S1^n);

S1 -> $X1; k2*S1;

end;p.Xo = 1;p.X1 = 0;p.S1 = 1;p.n = 4;p.Vmax = 12;p.k0 = 0.044;p.k1 = 0.01;p.k2 = 0.1;

Page 5: Oscillatory Circuits 1 Copyright © 2011: Sauro

5

Relaxation Oscillator

Page 6: Oscillatory Circuits 1 Copyright © 2011: Sauro

6

Relaxation Oscillator

Page 7: Oscillatory Circuits 1 Copyright © 2011: Sauro

7

Relaxation Oscillator

Page 8: Oscillatory Circuits 1 Copyright © 2011: Sauro

8

Relaxation Oscillator

So

S1

Page 9: Oscillatory Circuits 1 Copyright © 2011: Sauro

9

Relaxation Oscillator

A relaxation oscillator has two parts, a threshold device, for example a bistable system, and a negative feedback loop.

Page 10: Oscillatory Circuits 1 Copyright © 2011: Sauro

10

Relaxation Oscillator

SD = Substrate Depletion

AI = Activator-Inhibitor

SD/T = Substrate Depletion/Toggle.

Classificationsaccording to Tyson

Sniffers, buzzers, toggles and blinkers: dynamics of regulatory and signaling pathways in the cell John J Tysony, Katherine C Chenz and Bela NovakCurrent Opinion in Cel Biology, vol 15, 221-231 (2003)

Page 11: Oscillatory Circuits 1 Copyright © 2011: Sauro

11

Relaxation Oscillator

Page 12: Oscillatory Circuits 1 Copyright © 2011: Sauro

12

Synthetic Relaxation Oscillator

Cell, Vol. 113, 597–607, May 30, 2003, Development of Genetic Circuitry Exhibiting Toggle Switch or Oscillatory Behavior in Escherichia coli, Mariette R. Atkinson Michael A. Savageau Jesse T. Myers and Alexander J. Ninfa

Page 13: Oscillatory Circuits 1 Copyright © 2011: Sauro

13

Negative Feedback

Page 14: Oscillatory Circuits 1 Copyright © 2011: Sauro

14

Negative Feedback

V1, V2

V1

V2 = 0.3

V2 = 0.2

V2 = 0.1

S1

Page 15: Oscillatory Circuits 1 Copyright © 2011: Sauro

15

Negative Feedback: Phase Shift Oscillator

If the signal takes too long to make the appropriate adjustment, the systemcan go out of phase and begin to spontaneously oscillate.

Page 16: Oscillatory Circuits 1 Copyright © 2011: Sauro

16

Negative Feedback Phase Shift Oscillator

p = defn feedback

J0: $X0 -> S1; J0_VM1*(X0-S1/J0_Keq1)/(1+X0+S1+pow(S4,J0_h));J1: S1 -> S2; (10*S1-2*S2)/(1+S1+S2);J2: S2 -> S3; (10*S2-2*S3)/(1+S2+S3);J3: S3 -> S4; (10*S3-2*S4)/(1+S3+S4);J4: S4 -> $X1; J4_V4*S4/(J4_KS4+S4);

end;

p.X0 = 10;p.X1 = 0;p.S1 = 0;p.S2 = 0;p.S3 = 0;p.S4 = 0;p.J0_VM1 = 10;p.J0_Keq1 = 10;p.J0_h = 10;p.J4_V4 = 2.5;p.J4_KS4 = 0.5;

m = p.sim.eval (0, 10, 100, [<p.time>, <p.S1>]);graph (m);

Jarnac Model

Page 17: Oscillatory Circuits 1 Copyright © 2011: Sauro

17

Ring Oscillator

Page 18: Oscillatory Circuits 1 Copyright © 2011: Sauro

18

Ring Oscillator – Jarnac Modelp = defn cell $x -> P1; A/(1 + P2^n); P1 -> $w; k1*P1;

$x -> P2; A/(1 + P3^n); P2 -> $w; k2*P2;

$x -> P3; A/(1 + P1^n); P3 -> $w; k3*P3;end;

p.A = 1;p.n = 4;p.k1 = 0.2;p.k2 = 0.2;p.k3 = 0.1;

m = p.sim.eval (0, 200, 200, [<p.time>, <p.P1>]);graph (m);

P1

P2

P3

Page 19: Oscillatory Circuits 1 Copyright © 2011: Sauro

19

Ring Oscillator: Repressilator

A synthetic oscillatory network of transcriptional regulators Michael B. Elowitz and Stanislas Leibler Nature 403, 335-338(20 January 2000)

Page 20: Oscillatory Circuits 1 Copyright © 2011: Sauro

20

Ring Oscillator: Repressilator

A synthetic oscillatory network of transcriptional regulators Michael B. Elowitz and Stanislas Leibler Nature 403, 335-338(20 January 2000)

Page 21: Oscillatory Circuits 1 Copyright © 2011: Sauro

21

Synthetic Oscillators: Feedback Oscillator

A fast, robust and tunable synthetic gene oscillator. Jesse Stricker, Scott Cookson, Matthew R. Bennett, William H. Mather, Lev S. Tsimring & Jeff Hasty. Nature advance online publication 29 October 2008

Ideally Oscillators should be studied in single cells.

Page 22: Oscillatory Circuits 1 Copyright © 2011: Sauro

22

Synthetic Oscillators: Relaxation Oscillator

A fast, robust and tunable synthetic gene oscillator. Jesse Stricker, Scott Cookson, Matthew R. Bennett, William H. Mather, Lev S. Tsimring & Jeff Hasty. Nature advance online publication 29 October 2008

Page 23: Oscillatory Circuits 1 Copyright © 2011: Sauro

23

Synthetic Oscillators: Relaxation Oscillator

A fast, robust and tunable synthetic gene oscillator. Jesse Stricker, Scott Cookson, Matthew R. Bennett, William H. Mather, Lev S. Tsimring & Jeff Hasty. Nature advance online publication 29 October 2008

Page 24: Oscillatory Circuits 1 Copyright © 2011: Sauro

24

Synthetic Oscillators: Relaxation Oscillator

Page 25: Oscillatory Circuits 1 Copyright © 2011: Sauro

25

Synthetic Oscillators: Movies

http://www.nature.com/nature/journal/vaop/ncurrent/suppinfo/nature07389.html

Page 26: Oscillatory Circuits 1 Copyright © 2011: Sauro

26

Synthetic Oscillators: Mammalian

Nature 457, 309-312 (15 January 2009) doi:10. 1038/nature07616; Received 26 July 2008; Accepted 4 November 2008

A tunable synthetic mammalian oscillator Marcel Tigges, Tatiana T. Marquez-Lago, Jörg Stelling & Martin Fussenegger

Page 27: Oscillatory Circuits 1 Copyright © 2011: Sauro

27

Synthetic Oscillators: Mammalian

Nature 457, 309-312 (15 January 2009) doi:10. 1038/nature07616; Received 26 July 2008; Accepted 4 November 2008

A tunable synthetic mammalian oscillator Marcel Tigges, Tatiana T. Marquez-Lago, Jörg Stelling & Martin Fussenegger

Page 28: Oscillatory Circuits 1 Copyright © 2011: Sauro

28

Synthetic Oscillators: Mammalian

Page 29: Oscillatory Circuits 1 Copyright © 2011: Sauro

29

Synthetic Oscillators: Mammalian

Promoters

Proteins

tetracycline-dependenttransactivator

pristinamycin-dependenttransactivator

tTA activated Promoter

PIT activated Promoter

Page 30: Oscillatory Circuits 1 Copyright © 2011: Sauro

30

Synthetic Oscillators: Mammalian

Page 31: Oscillatory Circuits 1 Copyright © 2011: Sauro

31

Synthetic Oscillators: Mammalian

Page 32: Oscillatory Circuits 1 Copyright © 2011: Sauro

32

Synthetic Oscillators: MammalianOutput

Page 33: Oscillatory Circuits 1 Copyright © 2011: Sauro

33

Natural Oscillators1. Circadian rhythms (eg Drosophila, 24 hour period, feedback oscillator)2. Ca++ Oscillations3. Glycolytic Oscillations* (relaxation oscillator)4. Signaling Pathway Oscillations (P53, ERK, NF-kB) 5. Cell Cycle (relaxation oscillator)6. Synchronous Rhythmic Flashing Of Fireflies7. Segmentation during development8. Many examples of chemical oscillators (mostly relaxation oscillators)9. ….

Buck, John; "Synchronous Rhythmic Flashing of Fireflies. II," Quarterly Review of Biology, 63:265, 1988

* During growth phase on glucose and ethanol,starve yeast of glucose, add cyanide and glucose, the glycolytic pathway will oscillate(NAD/NADH, ATP/ADP)

Page 34: Oscillatory Circuits 1 Copyright © 2011: Sauro

34

Oscillatory Systems

Resilient circadian oscillator revealed in individual cyanobacteria Irina Mihalcescu, Weihong Hsing & Stanislas Leibler, Nature 430, 81-85 (1 July 2004)

Natural Oscillatory Networks

Hoffmann, A., Levchenko, A., Scott, M.L. and Baltimore, D. (2002) Science 298, 1241–1245 The IkappaB-NF-kappaB signaling module: temporal control and selective gene activation.

Oscillations and variability in the p53 system. Naama Geva-Zatorsky et al, Molecular Systems Biology 2 Article number: 006.0033 doi:10.1038/msb4100068

Shih YL, Le T, Rothfield L: Division site selection in Escherichia coli involves dynamic redistribution of Min proteins within coiled structures that extend between the two cell poles. Proc Natl Acad Sci USA 2003, 100:7865-7870.

Review: Oscillations in cell biology Karsten Kruse and Frank Julicher, Current Opinion in Cell Biology 2005, 17:20–26

Transduction of Intracellular and Intercellular Dynamics in Yeast Glycolytic Oscillations, Wolf et al, Biophys J, 78, 1145-1153 (2000)

Page 35: Oscillatory Circuits 1 Copyright © 2011: Sauro

35

Oscillatory Systems

Atkinson, M. R., Savageau, M. A., Myers, J. T. & Ninfa, A. J. Development of genetic circuitry exhibiting toggle switch or oscillatory behavior in Escherichia coli. Cell 113, 597–607 (2003).

Elowitz, M. B. & Leibler, S. A synthetic oscillatory network of transcriptional regulators. Nature 403, 335–338 (2000).

A synthetic gene–metabolic oscillator Eileen Fun et al, Nature, 435, 118-122 (2005)

Synthetic Oscillatory Networks

Review: Oscillations in cell biology Karsten Kruse and Frank Julicher, Current Opinion in Cell Biology 2005, 17:20–26

An excitable gene regulatory circuit induces transient cellular differentiation, Nature 440, 545-550 (23 March 2006) , Gürol M. Süel et al

Nature 457, 309-312 (15 January 2009) doi:10. 1038/nature07616; Received 26 July 2008; Accepted 4 November 2008 A tunable synthetic mammalian oscillator Marcel Tigges, Tatiana T. Marquez-Lago, Jörg Stelling & Martin Fussenegger

A fast, robust and tunable synthetic gene oscillator. Jesse Stricker, Scott Cookson, Matthew R. Bennett, William H. Mather, Lev S. Tsimring & Jeff Hasty. Nature 456, 516-519 (27 November 2008)

A synchronized quorum of genetic clocks. Tal Danino, Octavio Mondragón-Palomino, Lev Tsimring and Jeff HastyNature 463, 326-330 (21 January 2010)

Page 36: Oscillatory Circuits 1 Copyright © 2011: Sauro

Evolving Oscillators in silico

1. Genetic Diversity:Create Initial

Population

2. Evaluate Fitness

3. Selection:Kill Unfit Networks

4. Reproduction:Clone & Mutate

Survivors

Network

Cloned Network

Unfit Network

NextGeneration

Page 37: Oscillatory Circuits 1 Copyright © 2011: Sauro

Evolution of an Oscillator

Page 38: Oscillatory Circuits 1 Copyright © 2011: Sauro

Selection of Evolved Networks

Mathematical Functions

Quadratic Square Root Cubic

Page 39: Oscillatory Circuits 1 Copyright © 2011: Sauro

Selection of Evolved Networks

Bistable Networks

Page 40: Oscillatory Circuits 1 Copyright © 2011: Sauro

Selection of Evolved Networks

Oscillators

Page 41: Oscillatory Circuits 1 Copyright © 2011: Sauro

Selection of Evolved NetworksOscillators

Page 42: Oscillatory Circuits 1 Copyright © 2011: Sauro

Selection of Evolved NetworksOscillators

Page 43: Oscillatory Circuits 1 Copyright © 2011: Sauro

43

Negative FeedbackReduction in noise due to negative feedback.

Review: Computational studies of gene regulatory networks: in numero molecular biology Jeff Hasty, David McMillen, Farren Isaacs & James J. CollinsNature Reviews Genetics 2, 268-279 (April 2001)

Original Paper: Becskei, A. & Serrano, L. Engineering stability in gene networks by autoregulation. Nature 405, 590– 593 (2000).