-
Notifications
You must be signed in to change notification settings - Fork 0
/
PMC1480412.xml
1367 lines (1241 loc) · 214 KB
/
PMC1480412.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE article PUBLIC "-//NLM//DTD JATS (Z39.96) Journal Archiving and Interchange DTD v1.0 20120330//EN" "JATS-archivearticle1.dtd">
<article xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:mml="http://www.w3.org/1998/Math/MathML" article-type="research-article"><?properties open_access?><front><journal-meta><journal-id journal-id-type="nlm-ta">J Gen Physiol</journal-id><journal-id journal-id-type="iso-abbrev">J. Gen. Physiol</journal-id><journal-title-group><journal-title>The Journal of General Physiology</journal-title></journal-title-group><issn pub-type="ppub">0022-1295</issn><issn pub-type="epub">1540-7748</issn><publisher><publisher-name>The Rockefeller University Press</publisher-name></publisher></journal-meta><article-meta><article-id pub-id-type="pmid">12975449</article-id><article-id pub-id-type="pmc">PMC1480412</article-id><article-id pub-id-type="publisher-id">200308832</article-id><article-id pub-id-type="doi">10.1085/jgp.200308832</article-id><article-categories><subj-group subj-group-type="heading"><subject>Article</subject></subj-group></article-categories><title-group><article-title>Multiple Steps of Phosphorylation of Activated Rhodopsin Can Account for the Reproducibility of Vertebrate Rod Single-photon Responses</article-title></title-group><contrib-group><contrib contrib-type="author"><name><surname>Hamer</surname><given-names>R.D.</given-names></name><xref ref-type="aff" rid="aff1">1</xref></contrib><contrib contrib-type="author"><name><surname>Nicholas</surname><given-names>S.C.</given-names></name><xref ref-type="aff" rid="aff1">1</xref></contrib><contrib contrib-type="author"><name><surname>Tranchina</surname><given-names>D.</given-names></name><xref ref-type="aff" rid="aff2">2</xref></contrib><contrib contrib-type="author"><name><surname>Liebman</surname><given-names>P.A.</given-names></name><xref ref-type="aff" rid="aff3">3</xref></contrib><contrib contrib-type="author"><name><surname>Lamb</surname><given-names>T.D.</given-names></name><xref ref-type="aff" rid="aff4">4</xref></contrib></contrib-group><aff id="aff1">
<label>1</label>Smith-Kettlewell Eye Research Institute, San Francisco, CA 94115</aff><aff id="aff2">
<label>2</label>Department of Biology and Courant Institute of Mathematical Sciences, New York University, New York, NY 10012</aff><aff id="aff3">
<label>3</label>Department of Biochemistry and Biophysics, University of Pennsylvania Medical Center, Philadelphia, PA 19104</aff><aff id="aff4">
<label>4</label>John Curtin School of Medical Research, Australian National University, Canberra, ACT 2601, Australia</aff><author-notes><fn><p>Address correspondence to R.D. Hamer, Smith-Kettlewell Eye Research Institute, 2318 Fillmore Street, San Francisco, CA 94115. Fax: (415) 345-8455; email: <email>russ@ski.org</email>
</p></fn></author-notes><pub-date pub-type="ppub"><month>10</month><year>2003</year></pub-date><volume>122</volume><issue>4</issue><fpage>419</fpage><lpage>444</lpage><history><date date-type="received"><day>18</day><month>3</month><year>2003</year></date><date date-type="accepted"><day>19</day><month>8</month><year>2003</year></date></history><permissions><copyright-statement>Copyright © 2003, The Rockefeller University Press</copyright-statement><license license-type="openaccess"><license-p>This article is distributed under the terms of an Attribution–Noncommercial–Share Alike–No Mirror Sites license for the first six months after the publication date (see <ext-link ext-link-type="uri" xlink:href="http://www.rupress.org/terms">http://www.rupress.org/terms</ext-link>). After six months it is available under a Creative Commons License (Attribution–Noncommercial–Share Alike 4.0 Unported license, as described at <ext-link ext-link-type="uri" xlink:href="http://creativecommons.org/licenses/by-nc-sa/4.0/">http://creativecommons.org/licenses/by-nc-sa/4.0/</ext-link>).</license-p></license></permissions><abstract><p>Single-photon responses (SPRs) in vertebrate rods are considerably less variable than expected if isomerized rhodopsin (R*) inactivated in a single, memoryless step, and no other variability-reducing mechanisms were available. We present a new stochastic model, the core of which is the successive ratcheting down of R* activity, and a concomitant increase in the probability of quenching of R* by arrestin (Arr), with each phosphorylation of R* (Gibson, S.K., J.H. Parkes, and P.A. Liebman. 2000. <italic>Biochemistry</italic>. 39:5738–5749.). We evaluated the model by means of Monte-Carlo simulations of dim-flash responses, and compared the response statistics derived from them with those obtained from empirical dim-flash data (Whitlock, G.G., and T.D. Lamb. 1999. <italic>Neuron</italic>. 23:337–351.). The model accounts for four quantitative measures of SPR reproducibility. It also reproduces qualitative features of rod responses obtained with altered nucleotide levels, and thus contradicts the conclusion that such responses imply that phosphorylation cannot dominate R* inactivation (Rieke, F., and D.A. Baylor. 1998a. <italic>Biophys. J</italic>. 75:1836–1857; Field, G.D., and F. Rieke. 2002. <italic>Neuron</italic>. 35:733–747.). Moreover, the model is able to reproduce the salient qualitative features of SPRs obtained from mouse rods that had been genetically modified with specific pathways of R* inactivation or Ca<sup>2+</sup> feedback disabled. We present a theoretical analysis showing that the variability of the area under the SPR estimates the variability of integrated R* activity, and can provide a valid gauge of the number of R* inactivation steps. We show that there is a heretofore unappreciated tradeoff between variability of SPR amplitude and SPR duration that depends critically on the kinetics of inactivation of R* relative to the net kinetics of the downstream reactions in the cascade. Because of this dependence, neither the variability of SPR amplitude nor duration provides a reliable estimate of the underlying variability of integrated R* activity, and cannot be used to estimate the minimum number of R* inactivation steps. We conclude that multiple phosphorylation-dependent decrements in R* activity (with Arr-quench) can confer the observed reproducibility of rod SPRs; there is no compelling need to invoke a long series of non-phosphorylation dependent state changes in R* (as in Rieke, F., and D.A. Baylor. 1998a. <italic>Biophys. J</italic>. 75:1836–1857; Field, G.D., and F. Rieke. 2002. <italic>Neuron</italic>. 35:733–747.). Our analyses, plus data and modeling of others (Rieke, F., and D.A. Baylor. 1998a. <italic>Biophys. J</italic>. 75:1836–1857; Field, G.D., and F. Rieke. 2002. <italic>Neuron</italic>. 35:733–747.), also argue strongly against either feedback (including Ca<sup>2+</sup>-feedback) or depletion of any molecular species downstream to R* as the dominant cause of SPR reproducibility.</p></abstract><kwd-group><kwd>single-photon response reproducibility</kwd><kwd>stochastic model</kwd><kwd>multiple phosphorylation</kwd><kwd>phototransduction</kwd><kwd>rod responses</kwd></kwd-group></article-meta><notes><fn-group><fn><p>
<italic>Abbreviations used in this paper:</italic> Arr, arrestin; PDE, phosphodiesterase; RK, rhodopsin kinase; SPR, single-photon response.</p></fn></fn-group></notes></front><body><sec><title>INTRODUCTION</title><p>Reliable single-photon detection is a ubiquitous feature of vertebrate visual systems (<xref rid="bib54" ref-type="bibr">Rodieck, 1998</xref>). Evolution has produced biochemical and biophysical machinery in photoreceptors that can support reliable single-photon detection despite the inherent high variability in all molecular reactions. An abiding problem in phototransduction has been to explain the observed reproducibility of vertebrate rod single-photon responses (SPRs), given that the amplitude and time course of the response are determined primarily by the lifetime and activity of a single activated rhodopsin molecule (R*). If R* were to inactivate in a single memoryless step with first-order kinetics, its lifetime would be highly variable, exhibiting an approximately exponential distribution with a coefficient of variation (CV = SD/mean) of unity. In the absence of other mechanisms, this highly variable R* lifetime would be reflected, to one degree or another, in the variability of the SPR amplitude and/or kinetics. The relative reproducibility of SPRs, despite the inherent variability of the underlying individual biochemical reactions, places strong constraints on any model of phototransduction.</p><sec><title>Evidence for Reproducibility</title><p>Empirical measures have shown that the variability of vertebrate rod SPRs (assessed by any of several measures of amplitude or kinetics) is considerably lower than expected for a one-step R*-inactivation process. In this paper, we focus on four findings reported in the literature. The first finding is that the coefficient of variation of the amplitude of the SPRs (<italic>CV</italic>
<sub>ampl</sub>) is quite small (0.2–0.25: <xref rid="bib3" ref-type="bibr">Baylor et al., 1979</xref>; <xref rid="bib58" ref-type="bibr">Schneeweis and Schnapf, 1995</xref>; <xref rid="bib52" ref-type="bibr">Rieke and Baylor, 1998a</xref>; <xref rid="bib61" ref-type="bibr">Whitlock and Lamb, 1999</xref>; <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). The second finding is that the ensemble variance of a set of dim-flash responses is very nearly proportional to square of the mean of the response over almost the entire response time course. This observation has been used to suggest that variability in the elementary response waveform must be small (<xref rid="bib57" ref-type="bibr">Schnapf, 1983</xref>; <xref rid="bib58" ref-type="bibr">Schneeweis and Schnapf, 1995</xref>; <xref rid="bib52" ref-type="bibr">Rieke and Baylor, 1998a</xref>). That argument has been rejected by <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>, and we will elaborate on their insight that this finding alone does not imply that the SPR has low variability over its entire time course. The third finding is the low coefficient of variation of the area (<italic>CV</italic>
<sub>area</sub> ≈ 0.3) under the SPR (<xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). This measure has a natural pragmatic appeal, in that it captures variability in both the amplitude and time course of the SPR (<xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>), and we will show furthermore that there is a theoretical basis for choosing variability in SPR area to estimate the number of inactivation steps of R* over measures of variability of either amplitude or kinetics alone. The fourth measure is based on the finding that the variance of the SPR is at least an order of magnitude smaller than the square of the mean response, until some time after the mean response reaches its peak (<xref rid="bib52" ref-type="bibr">Rieke and Baylor, 1998a</xref>; <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref> found that the relative times-to-peak of the SPR variance and SPR squared mean, as well as the width of the SPR variance waveform aided in discriminating between candidate models.</p></sec><sec><title>A New Stochastic Model of Phototransduction Accounts for the Variability/Reproducibility of Single-photon Responses, as well as Other Key Electrophysiological Data</title><p>Based, in part, on the ideas and biochemical data of <xref rid="bib15" ref-type="bibr">Gibson et al. (2000)</xref>, we develop in this paper a kinetic model of phototransduction that includes a detailed stochastic simulation of the activation and inactivation of rhodopsin, G-protein (G), and phosphodiesterase (PDE). Simulations of the stochastic activation of PDE have been done previously by <xref rid="bib13" ref-type="bibr">Felber et al. (1996)</xref> and <xref rid="bib30" ref-type="bibr">Lamb (1994)</xref>. Our modeling is distinguished from theirs in four main respects: (a) We model reaction kinetics in greater detail than the prior studies, including competitive, stochastic binding of R* with G-protein, arrestin (Arr), and rhodopsin kinase. (b) Rather than simulating the two-dimensional diffusional contact between molecules, we concentrate on the reactions of those molecules by assuming that the disc surface is well mixed. (c) Neither <xref rid="bib30" ref-type="bibr">Lamb (1994)</xref> nor <xref rid="bib13" ref-type="bibr">Felber et al. (1996)</xref> coupled the activated PDE to the downstream reactions generating photocurrent (including cGMP-hydrolysis, channel closure, Ca<sup>2+</sup>-feedback, and Ca<sup>2+</sup>-buffering). Our model does so, thus allowing direct comparisons between empirical electrophysiological responses and model responses under a wide range of conditions. (d) <xref rid="bib30" ref-type="bibr">Lamb (1994)</xref> did not simulate inactivation reactions.</p><p>Our model embodies the following four hypotheses: (a) that R* undergoes a series of sequential phosphorylation steps, mediated by rhodopsin kinase (<xref rid="bib28" ref-type="bibr">Kühn and Wilden, 1982</xref>; <xref rid="bib63" ref-type="bibr">Wilden and Kühn, 1982</xref>; <xref rid="bib2" ref-type="bibr">Aton et al., 1984</xref>; <xref rid="bib60" ref-type="bibr">Thompson and Findlay, 1984</xref>; <xref rid="bib45" ref-type="bibr">Palczewski et al., 1991</xref>; <xref rid="bib62" ref-type="bibr">Wilden, 1995</xref>); (b) that competition for binding to R* occurs between three molecular species: inactive G-protein (G·GDP), rhodopsin kinase (RK), and Arr (<xref rid="bib46" ref-type="bibr">Pfister et al., 1983</xref>; <xref rid="bib39" ref-type="bibr">Miller and Dratz, 1984</xref>; <xref rid="bib6" ref-type="bibr">Buczylko et al., 1991</xref>; <xref rid="bib49" ref-type="bibr">Pulvermuller et al., 1993</xref>; <xref rid="bib27" ref-type="bibr">Krupnick et al., 1997</xref>; <xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>); (c) that each sequential step of phosphorylation leads to a progressive decrease in affinity between R* and G·GDP, and concomitantly to a progressive increase in affinity between R* and Arr (<xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>); and (d) that the affinity between R* and RK also ratchets down with each step of phosphorylation (<xref rid="bib6" ref-type="bibr">Buczylko et al., 1991</xref>; <xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>). We will refer to our full model based on these premises as the sequential phosphorylation model.</p><p>Using this model, we simulate ensembles of SPRs and dim-flash responses using Monte-Carlo methods. The model accounts for the four quantitative measures of SPR variability/reproducibility delineated above. In addition, despite the fact that in the model phosphorylation is the dominant process inactivating R*, the simulations reproduce key experimental results that <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> interpreted previously as evidence that phosphorylation could not be the dominant deactivation mechanism.</p><p>Moreover, without any additional parameter adjustments, the model reproduces the salient qualitative features of SPRs obtained from four genetic knockout and transgenic studies: three studies in which mouse rods had been genetically modified with specific pathways of R* inactivation disabled (Arr−/−, <xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>; RK−/−, <xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>; CSM, <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>), and one study in which the mechanism of feedback synthesis of guanylate cyclase had been disabled (GCAPs−/−; <xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>). In general, we find that attempting to simulate the results of knockout and transgenic experiments can provide valuable insights into the kinds of mechanisms that must be present, or about candidate molecular schemes that can be ruled out even if, in principle, they could achieve the empirical SPR reproducibility in one or more of the four quantitative measures of reproducibility.</p></sec><sec><title>Theory for Mechanisms Underlying SPR Reproducibility</title><p>Finally, we present a theoretical analysis of mechanisms underlying SPR reproducibility. It reveals a heretofore unrecognized tradeoff between variability of SPR amplitude and variability of SPR kinetics that depends critically on R* lifetime in relation to the net kinetics of the downstream reactions in the cascade. We explain what the statistics of SPR area tell us about underlying molecular mechanisms. We show how the coefficient of variation of SPR area can be used, in the context of a certain class of models, to estimate a lower bound for the number of R* inactivation steps required to yield observed SPR reproducibility. Neither the CV of SPR amplitude nor the statistics of SPR duration variability alone can be used in this manner. An important conclusion of this theoretical analysis is that, in normal rods, across species, the kinetics of R* inactivation cannot be very different from the kinetics of the downstream reactions, including the inactivation of the activated transducin–phosphodiesterase complex, in the dim-flash regime.</p></sec></sec><sec sec-type="materials|methods"><title>MATERIALS AND METHODS</title><sec><title>Sequential Phosphorylation Model</title><sec><title>Stochastic “front-end” reactions in the sequential phosphorylation model</title><p>To simulate the rod's response to dim flashes, we formulated an explicit model of the rod phototransduction cascade, including detailed stochastic implementation of the initial reactions. The time-varying quantities of reactants in these “front-end” reactions, defined as those from photon absorption and isomerization of R* through the activation and inactivation of PDE* (Eqs. <inline-formula><tex-math id="M1">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}3{\mathrm{e}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M2">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}8{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula>; <xref rid="fig1" ref-type="fig">Fig. 1</xref>) , were modeled as discrete signals (time-dependent integers) due to the relatively small numbers of molecules involved. Simulated PDE* responses to single photoisomerizations were generated using a Monte-Carlo approach (see Simulations and Monte-Carlo Methods below).</p><fig id="fig1" position="float"><label>F<sc>igure</sc> 1. </label><caption><p>(A) Stochastic model of “front-end” reaction (eEqs. 1–3e). Model showing the stochastic activation of G and PDE, the inactivation of R*, G*, and G·PDE*, as well as the competition between Arr, G, and RK for R<sub>n</sub>*, where <italic>n</italic> (0 ≤ <italic>n</italic> ≤ 7) is the number of times R* has been phosphorylated at any given point in time. Three mutually exclusive pathways for R<sub>n</sub>* are depicted: (1) R* inactivation by Arr-capping, the probability of which increases with <italic>n</italic> (<xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>); (2) phosphorylation of R* by RK, the probability of which is assumed to decrease with <italic>n</italic>; or (3) activation of G-protein, the probability of which decreases with <italic>n</italic> (<xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>). The gray arrows indicate the “return” pathways for R*, i.e., when it is released from G protein or RK. Phosphorylation-dependent reactions are indicated by purple arrows. (B) Activation and inactivation of PDE (Eq. 8a–c). Activated transducin (G<sub>α</sub>·GTP) binds to the PDEγ subunit (Eq. 8a). Inhibition by the PDEγ subunit is then relieved (Eq. 8b), yielding activated transducin–PDE* complex. For simplicity, inactivation of PDE* is assumed to occur in a single step (Eq. 8c; see text for details).</p></caption><graphic xlink:href="200308832f1"/></fig><p>The stochastic front-end model is based on the representation of the underlying biochemistry illustrated in <xref rid="fig1" ref-type="fig">Fig. 1</xref>. We now present the assumptions on which we based this model, and we specify the individual reaction steps in terms of a set of equations. In these equations, <italic>n</italic> refers to the phosphorylation state of R*, and the values of the parameters are given in <xref ref-type="table" rid="tbl1">Table I</xref> .</p><table-wrap id="tbl1" position="float"><label>TABLE I</label><caption><p>
<italic>Sequential Phosphorylation Model Parameters</italic>
<xref ref-type="table-fn" rid="tfn1">a</xref>
<xref ref-type="table-fn" rid="tfn2">b</xref>
<xref ref-type="table-fn" rid="tfn3">c</xref>
</p></caption><table frame="hsides" rules="groups"><thead><tr><th colspan="2" rowspan="1" align="center">“Front-end” parameters</th><th colspan="2" rowspan="1" align="center">“Back-end” parameters</th></tr></thead><tbody><tr><td colspan="1" rowspan="1" align="left">ω</td><td colspan="1" rowspan="1" align="char" char=".">0.6</td><td colspan="1" rowspan="1" align="left">
<italic>α<sub>max</sub></italic>
</td><td colspan="1" rowspan="1" align="left">87 μM s<sup>−1a</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>A</sub>(1) [<italic>Arr</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">0.15 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>K</italic>
<sub>c</sub>
</td><td colspan="1" rowspan="1" align="left">0.11 μM</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>RK1</sub>(0) [<italic>RK</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">110 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>m</italic>
</td><td colspan="1" rowspan="1" align="left">2</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>RK2</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">50 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>β<sub>dark</sub></italic>
</td><td colspan="1" rowspan="1" align="left">1 s<sup>−1</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>RK3</sub>(0) [<italic>ATP</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">200 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>β<sub>sub</sub></italic>
</td><td colspan="1" rowspan="1" align="left">0.00038 s<sup>−1</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>RK4</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">200 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>f</italic>
<sub>Ca</sub>
</td><td colspan="1" rowspan="1" align="left">0.16</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G1</sub>(0) [<italic>G·GDP</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">10,000 s<sup>−1b</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>F</italic>
</td><td colspan="1" rowspan="1" align="left">0.096485 C μmol<sup>−1</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G2</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">500 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>v</italic>
<sub>cyto</sub>
</td><td colspan="1" rowspan="1" align="left">1 pL</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G3</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">1,000 s<sup>−1b</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>J</italic>
<sub>dark</sub>
</td><td colspan="1" rowspan="1" align="left">42 pA</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G4</sub>[<italic>GDP</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">4000 s<sup>−1</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>g</italic>
<sub>dark</sub>
</td><td colspan="1" rowspan="1" align="left">4 μM</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G5</sub> [<italic>GTP</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">1,000 s<sup>−1b</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>n</italic>
<sub>cg</sub>
</td><td colspan="1" rowspan="1" align="left">3</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G6</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">2,000 s<sup>−1b</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>γ<sub>Ca</sub></italic>
</td><td colspan="1" rowspan="1" align="left">77 s<sup>−1a</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>G7</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">200 s<sup>−1c</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>c</italic>
<sub>dark</sub>
</td><td colspan="1" rowspan="1" align="left">0.5 μM</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>P1</sub> [<italic>PDE</italic>]</td><td colspan="1" rowspan="1" align="char" char=".">200 s<sup>−1c</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>c</italic>
<sub>0</sub>
</td><td colspan="1" rowspan="1" align="left">0.05 μM</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>P2</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">200 s<sup>−1c</sup>
</td><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>1</sub>
</td><td colspan="1" rowspan="1" align="left">0.2 μM<sup>−1</sup> s<sup>−1</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left">
<italic>τ<sub>PDE</sub></italic>
</td><td colspan="1" rowspan="1" align="char" char=".">3 s</td><td colspan="1" rowspan="1" align="left">
<italic>k</italic>
<sub>2</sub>
</td><td colspan="1" rowspan="1" align="left">0.8 s<sup>−1</sup>
</td></tr><tr><td colspan="1" rowspan="1" align="left"/><td colspan="1" rowspan="1" align="left"/><td colspan="1" rowspan="1" align="left">
<italic>e</italic>
<sub>T</sub>
</td><td colspan="1" rowspan="1" align="char" char=".">850 μM</td></tr></tbody></table><table-wrap-foot><fn id="tfn1"><label>a</label><p>The parameter <italic>α<sub>max</sub></italic> was automatically adjusted depending on the optimized value of <italic>K</italic>
<sub>c</sub> within the steady-state equation <italic>α<sub>max</sub></italic> = <italic>b<sub>dark</sub>g<sub>dark</sub></italic>[1 + (<bold>c</bold>
<italic><sub>dark</sub></italic>/<italic>K<sub>c</sub></italic>)<italic><sup>m</sup></italic>]. The parameter <italic>γ<sub>ca</sub></italic> was determined by the optimized value of <italic>f</italic>
<sub>Ca</sub> within the steady-state equation γ<sub><italic>Ca</italic></sub>=<tex-math id="M3">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{{\mathit{f}}_{{\mathit{Ca}}}}/{2{\mathit{Fv}}_{{\mathit{cyto}}}}\end{equation*}\end{document}</tex-math>
<italic>J</italic>
<sub><italic>dark</italic></sub>
<italic>c</italic>
<sub><italic>dark</italic></sub>−<italic>c</italic>
<sub>0</sub>
<sup>−1</sup>.</p></fn><fn id="tfn2"><label>b</label><p>
<xref rid="bib31" ref-type="bibr">Lamb and Pugh (1992)</xref> noted that the total effective delay due to the four reactions embodied in our Eqs. 3a–d could not exceed <italic>ν<sub>RG</sub></italic>
<sup>−1</sup> (also see <xref ref-type="disp-formula" rid="eqn10">Eq. 15</xref>). <xref rid="bib34" ref-type="bibr">Leskov et al. (2000)</xref> estimated <italic>ν<sub>RG</sub></italic> to be ∼150 s<sup>−1</sup> for amphibian rods, corresponding to a total effective delay of 6.7 ms. In practice, our parameter choices for the front-end reactions led to an average lag of ∼7 ms between G* production with R* in its unphosphorylated state, consistent with the overall delay for G-activation estimated by Lamb and Pugh.</p></fn><fn id="tfn3"><label>c</label><p>Three other front-end rate-constants (<italic>k</italic>
<sub>G7</sub>, <italic>k</italic>
<sub>P1</sub>[PDE]<italic><sub>,</sub></italic>k<sub>P2</sub>) were set to a value (200 s<sup>−1</sup>) that, along with faster rate-constants in the transducin/PDE cascade, yielded (in separate simulations) an excellent fit to the leading edge of the photocurrent activation of salamander rods over a 6 log unit dynamic range.</p></fn></table-wrap-foot></table-wrap></sec><sec><title>Reactions of activated rhodopsin, R* (<xref rid="fig1" ref-type="fig">Fig. 1</xref> A).</title><p>We assume (Eqs. <inline-formula><tex-math id="M4">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1\end{equation*}\end{document}</tex-math></inline-formula>, <inline-formula><tex-math id="M5">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}2\end{equation*}\end{document}</tex-math></inline-formula>, and <inline-formula><tex-math id="M6">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula>) that G·GDP, RK, and Arr bind competitively with R* (<xref rid="bib46" ref-type="bibr">Pfister et al., 1983</xref>; <xref rid="bib39" ref-type="bibr">Miller and Dratz, 1984</xref>; <xref rid="bib6" ref-type="bibr">Buczylko et al., 1991</xref>; <xref rid="bib49" ref-type="bibr">Pulvermuller et al., 1993</xref>; <xref rid="bib27" ref-type="bibr">Krupnick et al., 1997</xref>; <xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>). R* is assumed to undergo multiple, sequential phosphorylation (<xref rid="bib42" ref-type="bibr">Ohguro et al., 1993</xref>, <xref rid="bib41" ref-type="bibr">1994</xref>, <xref rid="bib44" ref-type="bibr">1995</xref>, <xref rid="bib43" ref-type="bibr">1996</xref>) at up to seven phosphorylation sites on the carboxy terminus of rhodopsin (<xref rid="bib28" ref-type="bibr">Kühn and Wilden, 1982</xref>; <xref rid="bib63" ref-type="bibr">Wilden and Kühn, 1982</xref>; <xref rid="bib2" ref-type="bibr">Aton et al., 1984</xref>; <xref rid="bib60" ref-type="bibr">Thompson and Findlay, 1984</xref>; <xref rid="bib45" ref-type="bibr">Palczewski et al., 1991</xref>; <xref rid="bib62" ref-type="bibr">Wilden, 1995</xref>; Eqs. <inline-formula><tex-math id="M7">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula>). These reactions lead to a progressive reduction in R* activity, defined as the rate at which molecules of G* are activated per R*. Inactivation of R* is defined as the reduction in this activity due either to phosphorylation or arrestin binding, or any other mechanism that reduces the rate of G-protein activation by R* (e.g., feedback or local depletion of G-protein). R* inactivation is achieved by multiple phosphorylation according to the following equations,</p><p>with the final, complete quench of R* activity occurring upon Arr binding to phosphorylated R*:</p><p>The notations “pre” and “post” in Eqs. <inline-formula><tex-math id="M8">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula> distinguish RK-bound states of R* before and after phosphorylation.</p><p>Transducin is assumed to be activated by a conventional series of reactions (Eqs. <inline-formula><tex-math id="M9">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{e}}\end{equation*}\end{document}</tex-math></inline-formula>; see <xref rid="bib31" ref-type="bibr">Lamb and Pugh, 1992</xref>).</p><p>where <italic>G<sub>α</sub></italic>·<italic>GTP</italic> is the activated form of transducin.</p><p>Based on the biochemical results of <xref rid="bib15" ref-type="bibr">Gibson et al. (2000)</xref>, the affinity of rhodopsin for G-protein is assumed to decrease exponentially with increasing phosphorylations (<xref ref-type="disp-formula" rid="eqn1">Eq. 4</xref>)<italic>,</italic> while its affinity for Arr is assumed to increase linearly with <italic>n</italic> (<xref ref-type="disp-formula" rid="eqn2">Eq. 5</xref>). Arrestin is able to bind R*, with increasing probability, at any time following the first phosphorylation (<italic>n</italic> ≥ 1), to terminate whatever R* activity remains in that state.</p><p>
<disp-formula id="eqn1"><label>(4)</label><tex-math id="M10">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}k_{G1} \left \left(n\right) \right =k_{G1} \left \left(0\right) \right {\mathrm{exp}} \left \left(-{\mathrm{{\omega}}}n\right) \right {\mathrm{,}}\end{equation*}\end{document}</tex-math></disp-formula>
<disp-formula id="eqn2"><label>(5)</label><tex-math id="M11">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}k_{A} \left \left(n\right) \right =nk_{A} \left \left(1\right) \right {\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>The exponential rate, <italic>ω</italic>, was set to 0.6 from an exponential fit to the data in <xref rid="fig2" ref-type="fig">Fig. 2</xref> A in <xref rid="bib15" ref-type="bibr">Gibson et al. (2000)</xref>.</p></sec></sec><sec><title>Choice of Phosphorylation Dependence for R–RK Affinity</title><p>Although the explicit dependence of R–RK binding affinity and rate on R* phosphorylation state has not been documented with the same detail as the R–G and R–Arr affinities (<xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>), there is biochemical support for the notion that R–RK affinity decreases systematically with the phosphorylation state of R*. For example, <xref rid="bib6" ref-type="bibr">Buczylko et al. (1991)</xref> found that phosphorylated RK has significantly lower affinity for phosphorylated R* than for unphosphorylated R*. Moreover, the data and analysis of <xref rid="bib15" ref-type="bibr">Gibson et al. (2000)</xref> shows that, given the opportunity for RK to interact with phosphorylated versus unphosphorylated rhodopsin, it preferentially interacts with unphosphorylated rhodopsin, consistent with the idea that R–RK affinity decreases systematically as R* becomes phosphorylated.</p><p>We set the R–RK affinity to have the same dependence on <italic>n</italic> as the affinity between R* and G-protein by varying <italic>k</italic>
<sub>RK1</sub>.</p><p>
<disp-formula id="eqn3"><label>(6)</label><tex-math id="M12">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}k_{RK1} \left \left(n\right) \right =k_{RK1} \left \left(0\right) \right {\mathrm{exp}} \left \left(-{\mathrm{{\omega}}}n\right) \right {\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>We treat the rate of incremental phosphorylation of the R–RK complex by ATP as <italic>n</italic> dependent, in that it reduces to zero when all available sites on the R* carboxy terminus are occupied.</p><p>
<disp-formula id="eqn4"><label>(7)</label><tex-math id="M13">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}k_{RK3} \left \left(n\right) \right = \left \left\{\begin{matrix}k_{RK3} \left \left(0\right) \right {\mathrm{,}}\;n<n_{max}\\ 0{\mathrm{,}}\;n=n_{max}\end{matrix} \right \end{equation*}\end{document}</tex-math></disp-formula>
</p><p>In a model where RK and G bind R* competitively and Arr is only permitted to bind once R* is fully phosphorylated, this arrangement (Eqs. <inline-formula><tex-math id="M14">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}4{\raisebox{1mm}{\line(1,0){6}}}7\end{equation*}\end{document}</tex-math></inline-formula>) would cause, on average, an equal number of PDE* to be produced in each phosphorylation state, and it can be demonstrated analytically that this would minimize variability in the number of activated G-proteins produced per photoisomerization. In our implementation of the model, Arr is permitted to bind with increasing probability after the first phosphorylation (<xref rid="fig4" ref-type="fig">Fig. 4</xref> D, inset). Consequently, derivation of the optimal phosphorylation-dependence for R–RK affinity is quite complicated. However, we have estimated the ideal affinity profile by numerical optimization techniques, and have verified that, with model parameters that provide a good account of the data, the affinity profile embodied in <xref ref-type="disp-formula" rid="eqn3">Eq. 6</xref> yields nearly ideal minimization of variability.<xref ref-type="fn" rid="fn1">1</xref>
</p><p>We also examined the effect of having a different exponential phosphorylation dependence for the R–G and R–RK affinities. We found that (assuming the <italic>ω</italic> for R–G affinity in <xref ref-type="disp-formula" rid="eqn1">Eq. 4</xref> was fixed at the empirical estimate of 0.6), if <italic>ω</italic> for R–RK affinity in <xref ref-type="disp-formula" rid="eqn3">Eq. 6</xref> varied between ∼0.3 and ∼0.7, the predicted variability of PDE* production would only vary by ∼5 percent. Finally, we examined other profiles for R–RK affinity, such as linear decrease in affinity with <italic>n</italic>, or a flat profile (no dependence on phosphorylation state). These profiles led to a significant increase in the predicted variability in the number of PDE*s produced compared to the exponential profile used in the sequential phosphorylation model.</p><p>Because the phosphorylation dependence profile for R–RK affinity we adopted yields good statistical performance of the model (e.g., low SPR variability), and because some of the details of such phosphorylation dependence have yet to be fleshed out experimentally, our choice of phosphorylation dependence for R–RK affinity may be viewed as a testable biochemical prediction of our model.</p><sec><title>Activation and inactivation of PDE (<xref rid="fig1" ref-type="fig">Fig. 1</xref> B).</title><p>For the activation of PDE*, we assumed that activated transducin binds to the γ subunit of PDE (Eq. <inline-formula><tex-math id="M15">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula>), and that the inhibition of cGMP hydrolysis by the PDEγ subunit is then relieved (Eq. <inline-formula><tex-math id="M16">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{b}}\end{equation*}\end{document}</tex-math></inline-formula>). For the inactivation of PDE*, we did not include explicit equations for acceleration of transducin (and, hence, PDE) inactivation due to interactions with the proteins RGS9-1 and Gβ5 (<xref rid="bib59" ref-type="bibr">Skiba et al., 2001</xref>; <xref rid="bib35" ref-type="bibr">Lishko et al., 2002</xref>; <xref rid="bib37" ref-type="bibr">Martemyanov and Arshavsky, 2002</xref>; for review see <xref rid="bib21" ref-type="bibr">He and Wensel, 2002</xref>). Instead, we assumed that these reactions were fast, and we incorporated their effect into a single step of PDE–inactivation (Eq. <inline-formula><tex-math id="M17">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula>).<xref ref-type="fn" rid="fn2">2</xref> We have examined the effects of including such reactions, and found the effects on the simulations to be negligible.</p><p>where <italic>PDE*·G<sub>α</sub> · GTP</italic> represents the activated form of the transducin–PDE complex, referred to as PDE* throughout this paper, and <italic>PDE·G<sub>α</sub> · GDP</italic> represents the inactivated form (PDE). In all simulations, unless otherwise stated, τ<sub>PDE</sub> was 3 s. The mean stochastic lifetime of R* (with all effects of multiple phosphorylation and Arr-binding included) was ∼2.8 s. However, the effective first-order time constant (defined as the first moment of the mean R* activity function) approximating the mean R* inactivation waveform was ∼1.3 s. Thus, PDE–inactivation was (on average) the rate-limiting front-end reaction.</p></sec><sec><title>Deterministic model of “back-end” reactions (<xref rid="fig2" ref-type="fig">Fig. 2</xref>) </title><p>The front-end steps contribute considerable amplification, and <xref rid="bib34" ref-type="bibr">Leskov et al. (2000)</xref> report that a single amphibian rod R* molecule activates ∼150 PDE*/s.<xref ref-type="fn" rid="fn3">3</xref> The front-end parameters we used reproduce this PDE* activation rate up to the time of the first phosphorylation of R*. However, as phosphorylation of R* proceeds, the rate of PDE* production decreases (due to the phosphorylation-dependent decrease in R–G affinity, <xref ref-type="disp-formula" rid="eqn1">Eq. 4</xref>). The net result is that each R* leads to the production of, on average, ∼220 PDE*.</p><p>Since the number of activated PDE* molecules per R* is reasonably large, it is appropriate to treat the downstream “back-end” reactions as continuous signals, and to model them using a system of differential equations (Eqs. <inline-formula><tex-math id="M18">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}9{\raisebox{1mm}{\line(1,0){6}}}11\end{equation*}\end{document}</tex-math></inline-formula>). These steps are: Ca<sup>2+</sup>-sensitive synthesis of cGMP by guanglyl cyclase and hydrolysis of cGMP by PDE* (<xref ref-type="disp-formula" rid="eqn5">Eq. 9</xref>); Ca<sup>2+</sup> influx through cGMP-gated membrane cation channels and Ca<sup>2+</sup> efflux via the Na<sup>+</sup>/Ca<sup>2+</sup>-K<sup>+</sup> exchanger (<xref ref-type="disp-formula" rid="eqn6">Eq. 10</xref>); and sequestration and release of Ca<sup>2+</sup> by intracellular buffers (<xref ref-type="disp-formula" rid="eqn7">Eq. 11</xref>). .</p><fig id="fig2" position="float"><label>F<sc>igure</sc> 2. </label><caption><p>Schematic representation of differential equation model of “back-end”. Model showing reactions subsequent to PDE activation, including cGMP-hydrolysis and synthesis, channels closure, Ca<sup>2+</sup> feedback, Ca<sup>2+</sup>-buffering. These reactions were simulated as deterministic reactions with differential equations.</p></caption><graphic xlink:href="200308832f2"/></fig><p>
<disp-formula id="eqn5"><label>(9)</label><tex-math id="M19">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathbf{{\mathrm{g}}}}\dot ={\mathrm{{\alpha}}}_{max} \left \left[1+ \left \left({{\mathbf{{\mathrm{c}}}}}/{K_{c}}\right) \right ^{m}\right] \right ^{-1}- \left \left({\mathrm{{\beta}}}_{dark}+{\mathrm{{\beta}}}_{sub}{\mathbf{{\mathrm{PDE}}}}^{*}\right) \right {\mathbf{{\mathrm{g}}}}\end{equation*}\end{document}</tex-math></disp-formula>
<disp-formula id="eqn6"><label>(10)</label><tex-math id="M20">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathbf{{\mathrm{c}}}}\dot =\frac{f_{Ca}J_{dark} \left \left({{\mathbf{{\mathrm{g}}}}}/{g_{dark}}\right) \right ^{n_{cg}}}{2Fv_{cyto}}-{\mathrm{{\gamma}}}_{Ca} \left \left({\mathbf{{\mathrm{c}}}}-c_{0}\right) \right -{\mathbf{{\mathrm{c}}}}\dot _{{\mathbf{{\mathrm{b}}}}}\end{equation*}\end{document}</tex-math></disp-formula>
<disp-formula id="eqn7"><label>(11)</label><tex-math id="M21">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathbf{{\mathrm{c}}}}\dot _{{\mathbf{{\mathrm{b}}}}}=k_{1} \left \left(e_{T}-{\mathbf{{\mathrm{c}}}}_{{\mathbf{{\mathrm{b}}}}}\right) \right {\mathbf{{\mathrm{c}}}}-k_{2}{\mathbf{{\mathrm{c}}}}_{{\mathbf{{\mathrm{b}}}}}{\mathrm{,}}\end{equation*}\end{document}</tex-math></disp-formula>where <bold>PDE</bold>* = [<italic>PDE*·G<sub>α</sub> · GTP</italic>], <bold>g</bold> = [<italic>cGMP</italic>], <bold>c</bold> = [Ca<sup>2+</sup>], and <bold>c</bold>
<sub>b</sub> represents intracellular calcium buffers (all in μM), and the “dot” notation represents the time derivative. The parameters employed in these equations are: <italic>α<sub>max</sub></italic>, the maximal rate of cGMP synthesis; <italic>K</italic>
<sub>c</sub>, the concentration of Ca<sup>2+</sup> at which cGMP is synthesized at half its maximal rate; <italic>m</italic>, the Hill coefficient for the action of Ca<sup>2+</sup>on cyclase; <italic>β<sub>dark</sub></italic>, the dark rate of cGMP hydrolysis; <italic>β<sub>sub</sub></italic>, the rate constant of cGMP hydrolysis per activated PDE subunit; <italic>f</italic>
<sub>Ca</sub>, the fraction of circulating current carried by Ca<sup>2+</sup>; <italic>F</italic>, the Faraday constant; <italic>v</italic>
<sub>cyto</sub>, the effective cytoplasmic volume; <italic>J</italic>
<sub>dark</sub>, the dark circulating current; <italic>g</italic>
<sub>dark</sub>, the steady-state concentration of cGMP in darkness; <italic>n</italic>
<sub>cg</sub>, the Hill coefficient for channel opening by cGMP; <italic>γ<sub>Ca</sub></italic>, the rate constant of calcium extrusion by the Na<sup>+</sup>/Ca<sup>2+</sup>-K<sup>+</sup> exchanger; <italic>c</italic>
<sub>0</sub>, the minimum intracellular Ca<sup>2+</sup> concentration; <italic>k</italic>
<sub>1</sub> and <italic>k</italic>
<sub>2</sub>, the association and dissociation rate constants of Ca<sup>2+</sup> with intracellular buffers; and <italic>e</italic>
<sub>T</sub>, the total calcium buffer concentration. The units and values of all parameters are given in <xref ref-type="table" rid="tbl1">Table I</xref>.</p><p>Photocurrent is given by <disp-formula id="eqn8"><label>(12)</label><tex-math id="M22">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathbf{{\mathrm{J}}}}=J_{dark} \left \left({{\mathbf{{\mathrm{g}}}}}/{g_{dark}}\right) \right ^{n_{cg}}{\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>We assumed that Ca<sup>2+</sup> feedback occurs at guanylate cyclase only. Having cyclase feedback as the dominant feedback mechanism is consistent with recent evidence from GCAPs−/− rod responses (<xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>), suggesting that Ca<sup>2+</sup> feedback via recoverin and RK onto R* phosphorylation rate does not significantly affect the dim-flash response, though it does affect responses at high intensities.</p></sec></sec><sec><title>Model Parameters</title><p>The values of the parameters for the sequential phosphorylation model (Eqs. <inline-formula><tex-math id="M23">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\raisebox{1mm}{\line(1,0){6}}}12\end{equation*}\end{document}</tex-math></inline-formula>) are given in <xref ref-type="table" rid="tbl1">Table I</xref>. Parameters were set at modern literature estimates when these were known. In general, all parameter values for which estimates were available in the literature were within a factor of two of the literature values. A dark internal calcium concentration of 500 nM was assumed (<xref rid="bib29" ref-type="bibr">Lagnado et al., 1992</xref>; <xref rid="bib19" ref-type="bibr">Gray-Keller and Detwiler, 1994</xref>; <xref rid="bib56" ref-type="bibr">Sampath et al., 1998</xref>).</p><p>In order to capture the stochastic nature of the “front-end” of the cascade, in addition to R*'s interaction with Arr and RK, we implemented seven activation steps from photon absorption to PDE activation (Eqs. <inline-formula><tex-math id="M24">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{e}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M25">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M26">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathrm{b}}\end{equation*}\end{document}</tex-math></inline-formula>), based largely on the sequence delineated by <xref rid="bib31" ref-type="bibr">Lamb and Pugh (1992)</xref>. While empirical estimates were not available for each of these parameters, limits on some of these were estimated in <xref rid="bib31" ref-type="bibr">Lamb and Pugh (1992)</xref> (see legend to <xref ref-type="table" rid="tbl1">Table I</xref> for details). The front-end rate constants and the rate constant of cGMP hydrolysis per PDE hydrolytic subunit, <italic>β<sub>sub</sub></italic>, were adjusted as needed to achieve a close fit (by eye) to the ensemble mean of the <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> data, to generate a target number of PDE* activations per photoisomerization (200–300), as well as to achieve the appropriate qualitative behavior in the ATP/GTP manipulation experiments of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>.</p><p>The back-end parameters <italic>K</italic>
<sub>c</sub>, β<italic><sub>dark</sub></italic>, f<sub>Ca</sub>, k<sub>1</sub>, k<sub>2</sub>, and <italic>e</italic>
<sub>T</sub> were optimized so that the model would generate flash responses that matched a representative set of empirical flash responses obtained from toad rods (from <xref rid="bib53" ref-type="bibr">Rieke and Baylor, 1998b</xref>) over a wide range of flash intensities. More details about the choices of parameter values can be found in the legend to <xref ref-type="table" rid="tbl1">Table I</xref>.</p></sec><sec><title>Simulations and Monte-Carlo Methods</title><p>All aspects of the model and analyses were implemented using Matlab/Simulink (The Mathworks). The code is available upon request (contact first author).</p><p>Monte-Carlo simulations of 1,000 SPRs were run. Simulations were carried out using the Gillespie method (<xref rid="bib16" ref-type="bibr">Gillespie, 1976</xref>, <xref rid="bib17" ref-type="bibr">1977</xref>; <xref rid="bib13" ref-type="bibr">Felber et al., 1996</xref>). The probability that a molecular species takes a particular reaction pathway is given by the reaction rate for entering that pathway divided by the sum of rates of all available pathways. The dwell time or waiting time before taking one of the pathways is an exponentially distributed random variable with a mean given by the inverse sum of reaction rates for the possible pathways. For example, a free R* molecule's next event could be a binding with either G·GDP, RK, or Arr. To determine which of these happens, we generate a random number, r, uniformly distributed between 0 and 1. G·GDP binds if <italic>r</italic> < <italic>k<sub>G</sub></italic>
<sub>1</sub>
<inline-formula><tex-math id="M27">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}/\end{equation*}\end{document}</tex-math></inline-formula>
<italic>k</italic>
<sub>G1</sub> + <italic>k</italic>
<sub>RK1</sub> + <italic>k</italic>
<sub>A</sub>, RK binds if <italic>k<sub>G</sub></italic>
<sub>1</sub>
<inline-formula><tex-math id="M28">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}/\end{equation*}\end{document}</tex-math></inline-formula>
<italic>k</italic>
<sub>G1</sub> + <italic>k</italic>
<sub>RK1</sub> + <italic>k</italic>
<sub>A</sub> ≤ <italic>r</italic> < <italic>k</italic>
<sub>G1</sub> + <italic>k</italic>
<sub>RK1</sub>/<italic>k</italic>
<sub>G1</sub> + <italic>k</italic>
<sub>RK1</sub> + <italic>k</italic>
<sub>A</sub>, otherwise Arr binds. The lag-time in the free R* state is determined by generating a second random number from an exponential distribution with mean equal to <inline-formula><tex-math id="M29">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1/\end{equation*}\end{document}</tex-math></inline-formula>
<italic>k</italic>
<sub>G1</sub> + <italic>k</italic>
<sub>RK1</sub> + <italic>k</italic>
<sub>A</sub>.</p><p>To simulate experimental data we generated a series of PDE* responses to Poisson numbers of photoisomerizations. Failures are all-zero vectors, and multiples are generated by summing the PDE* responses from randomly selected single-photon responses. The PDE* response is transformed to photocurrent through the deterministic back-end of the model (Eqs. <inline-formula><tex-math id="M30">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}9{\raisebox{1mm}{\line(1,0){6}}}12\end{equation*}\end{document}</tex-math></inline-formula>). Noise (both the continuous component of photoreceptor noise and instrument noise) was then added to the photocurrent response, as was done in Fig. 9 of <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>. Finally, a 2.5 Hz digital low-pass filter was applied to the responses (<xref rid="bib61" ref-type="bibr">Whitlock and Lamb, 1999</xref>).</p></sec><sec><title>Simulation of Other Conditions</title><p>In order to simulate alternate conditions (including effects of genetic modification of R* inactivation mechanisms), we made the following modifications to the sequential phosphorylation model and/or parameter values. Apart from the changes explicitly listed, all other parameters were unaltered. In each case, the mean number of photoisomerizations was 0.65, and we added noise as above.</p></sec><sec><title>Simulations of Transgenic and Genetic Knockout Data</title><p>The simulated genetically modified responses shown in <xref rid="fig4" ref-type="fig">Figs. 4</xref> H, 7 F, and 8 F were generated using the means of 10 model SPRs in order to approximate the number of responses averaged in the corresponding experimental studies. These simulations represent the predictions for toad rods with the genetic manipulations used in four studies on mouse rods (<xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>; <xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>; <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>; <xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>).</p><p>In order to simulate rhodopsin kinase knockout (RK−/−) responses (<xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>), the parameter <italic>k</italic>
<sub>RK1</sub>[<italic>RK</italic>] was set to zero across all <italic>n</italic> in Eq. 1a. Arr−/− (<xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>) was simulated by setting <italic>k</italic>
<sub>A</sub>[<italic>Arr</italic>] = 0 across all <italic>n</italic>. In order to simulate the transgenic disabling of all phosphorylation sites on the carboxy terminus of rhodopsin (analogous to <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>, “completely substituted mutant”, or CSM, in which serine and threonine residues were replaced by alanine), we set <italic>k</italic>
<sub>RK3</sub> = 0 across all <italic>n</italic>.</p></sec><sec><title>Altered Levels of ATP and GTP</title><p>In order to simulate the ATP and GTP manipulations used to generate the data in Fig. 14 of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>, we scaled the parameters <italic>k</italic>
<sub>RK3</sub>[<italic>ATP</italic>] and <italic>k</italic>
<sub>G5</sub>[<italic>GTP</italic>] shown in <xref ref-type="table" rid="tbl1">Table I</xref> by 0.04 and 0.4, respectively, the same factors used in <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> (see Eqs. <inline-formula><tex-math id="M31">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\mathrm{b}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M32">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula>, respectively).</p></sec><sec><title>Early Saturation Model</title><p>An early saturation model was implemented by restricting the amount of PDE locally available subsequent to a photoisomerization. R* shutoff was achieved in a single step by setting <italic>k</italic>
<sub>A</sub>(1) to infinity, so that after the first phosphorylation, Arr-capping was automatic and instantaneous. This ensured that the only mechanism available to reduce SPR variability was the local depletion of PDE.</p><p>The local depletion of PDE was achieved by scaling <italic>k</italic>
<sub>P1</sub>[<italic>PDE</italic>] (Eq. <inline-formula><tex-math id="M33">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}8{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula>) by the factor (1 − <bold>PDE*</bold>/<italic>PDE</italic>
<sub>max</sub>), where <bold>PDE*</bold> is the running count of PDE-subunit activations and <italic>PDE</italic>
<sub>max</sub> is the total number of PDE subunits locally available. In simulations, we found that in order to achieve empirical levels of SPR variability (<italic>CV</italic>
<sub>area</sub>) using only this local saturation mechanism, the number of PDEs locally available to R* (<italic>PDE</italic>
<sub>max</sub>) had to be restricted to ∼300. In contrast, for the full sequential phosphorylation model, <italic>PDE</italic>
<sub>max</sub> is set to infinity, so that there is no local saturation (i.e., the response to a single R* will not cause any local depletion of PDE).</p></sec><sec><title>Calcium Clamping</title><p>Ca<sup>2+</sup> clamp was simulated by replacing the time-varying calcium variable, <bold><italic>c</italic></bold>, with the constant, <italic>c</italic>
<sub>dark</sub> (so that <inline-formula><tex-math id="M34">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\dot {c}}=0\end{equation*}\end{document}</tex-math></inline-formula>), which reduces the back-end deterministic equations (Eqs. <inline-formula><tex-math id="M35">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}9{\raisebox{1mm}{\line(1,0){6}}}11\end{equation*}\end{document}</tex-math></inline-formula>) to the single equation <disp-formula id="eqn9"><label>(13)</label><tex-math id="M36">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathbf{{\mathrm{g}}}}\dot ={\mathrm{{\alpha}}}_{dark}- \left \left({\mathrm{{\beta}}}_{dark}+{\mathrm{{\beta}}}_{sub}{\mathbf{{\mathrm{PDE}}}}*\right) \right {\mathbf{{\mathrm{g}}}}{\mathrm{,}}\end{equation*}\end{document}</tex-math></disp-formula>where <inline-formula><tex-math id="M37">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathrm{{\alpha}}}_{dark}={\mathrm{{\alpha}}}_{max} \left \left[1+ \left \left({c_{dark}}/{K_{c}}\right) \right ^{m}\right] \right ^{-1}={\mathrm{{\beta}}}_{dark}g_{dark}\end{equation*}\end{document}</tex-math></inline-formula>.</p></sec><sec><title>Data Analysis</title><p>In order to establish an empirical baseline for SPR variability, four analyses of SPR variability of <xref rid="bib61" ref-type="bibr">Whitlock and Lamb's (1999)</xref> original data were performed. Two of these analyses were also presented in <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>, and two were new analyses not presented in their paper. The results analyzed here were those presented in their <xref rid="fig1" ref-type="fig">Figs. 1</xref>–<xref rid="fig3" ref-type="fig">3</xref> , comprising responses of a toad rod to a set of 350 identical flashes that delivered on average ∼0.6 photoisomerizations per flash. The methods and procedures used in collecting Whitlock and Lamb's original electrophysiological data are described in detail in their paper (<xref rid="bib32" ref-type="bibr">Lamb et al., 1986</xref>; <xref rid="bib61" ref-type="bibr">Whitlock and Lamb, 1999</xref>).</p><fig id="fig3" position="float"><label>F<sc>igure</sc> 3. </label><caption><p>The empirical data sets with which model results are compared. The first five panels (A–E) show analyses of original data from <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>. (A) Waveforms of 101 SPRs (red) and 51 MPRs (green), as well as 161 waveforms judged to be failures (gray). We have reanalyzed Whitlock and Lamb's data using the methodology described in <sc>materials</sc>
<sc>and</sc>
<sc>methods</sc>. The solid blue curve is the ensemble mean of the SPRs. (B) Histogram of amplitudes for all recording epochs shown in A. Amplitude for each response was calculated as described in <sc>materials</sc>
<sc>and</sc>
<sc>methods</sc>. The solid black curve shows the result of fitting a sum-of-Gaussians model to the data, yielding estimates of the σ and μ of each of the presumed underlying distributions. These parameters were then used to classify responses as either failures, SPRs, or MPRs by determining upper and lower amplitude limits beyond which the probability that a response was an SPR fell below 50%. The CV for SPR amplitudes identified in this manner (red overlay in histogram) was 0.15. (C) Comparison between the light-evoked ensemble variance increase (red) and the square of the ensemble mean (blue). The variance increase was calculated by subtraction of the variance of the failures from the variance of all responses. Variance was scaled by a factor of 0.53 to match the mean squared. (D) Histogram of response areas for all responses (failures, SPRs and MPRs) as classified from the amplitude histogram in B. The area for each response was calculated by integrating the response over the 9 s after the each stimulus presentation. For the failures, ∼50% of the responses had negative areas, as expected. The CV for area of the SPRs (red overlay) was 0.36. (E) The time-dependent residual variance of SPRs (σ<sub>SPR</sub>
<sup>2</sup>−σ<sub>failure</sub>
<sup>2</sup>; red curve) and the square of the mean SPR (blue curve). The SPRs were categorized from the model fit to the amplitude histogram as in B. The SPR variance is approximately an order of magnitude smaller than the square of the mean response until after the peak of the mean response, peaks much later than the mean and is broader. F and G reproduce data from Fig. 14 of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>, showing the effects of lowering transduction gain in the presence of normal, control levels of ATP (500 μM) or low ATP (20 μM) levels in truncated toad rod outer segments. Responses are averages of 10–15 trials, each eliciting ∼10 photoisomerizations. For each ATP condition, GTP concentration was decreased by a factor of 2.5 (control GTP: blue; low GTP: red). With normal ATP (F), lowering GTP caused the dim-flash response amplitude to decrease with no effect on the response kinetics. In low ATP (G), the same GTP manipulation decreased response amplitude and slowed the response. <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> interpreted these results to imply that neither phosphorylation nor arrestin-binding controlled the majority of rhodopsin's cumulative activity. Insets in panels F and G show the responses before peak amplitudes were equated. The peak amplitudes were, control ATP: 19 pA (control GTP), 11 pA (low GTP); low ATP: 23 pA (control GTP), 14 pA (low GTP). (H) The results of one study in which feedback synthesis of cGMP was genetically disrupted, plus three studies in which R* inactivation mechanisms were disrupted by genetic knockout or transgenic manipulation of mouse rods. (Red) Arr−/− (<xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>, Mn of 21 responses); (Blue) RK−/− (<xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>, mean of 14 responses); (Green) transgenic disabling of six phosphorylation sites on rhodopsin (<xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>, CSM responses, mean of 10 responses; see text for details); (Orange) GCAPs−/− (<xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>, mean of 31 rod responses). The WT responses from each of these studies are shown as thin curves. The WT responses were scaled to the same relative peak amplitude (1.0), but the relationship to the corresponding genetically manipulated responses in each case was not altered. The actual mean WT SPR peak amplitude in each study was on the order of 0.3 - 0.6 pA.</p></caption><graphic xlink:href="200308832f3"/></fig></sec><sec><title>Zeroing and Data Selection</title><p>Raw data records were first corrected for low-frequency drift, then objectively tested for being at baseline at the time of the delivery of the stimulus, and then zeroed by subtraction of a DC offset using the method we now describe.</p><p>The full data set consisted of 350 recording epochs of 10-s duration each, with the 20-ms (500 nm) flash presented 1 s into the recording epoch. Since the prestimulus portion of each recording comprises one tenth of the total epoch, we assume that at least 10% of each response should be at baseline levels, and extract the 10th percentile from the sorted current values for each record to form an estimate of the baseline drift over the experiment (∼1 h). This time-varying baseline drift waveform was low-pass filtered (−3 dB at 0.013 Hz) and subtracted from the raw responses.</p><p>The means of each of the 350, 1-s prestimulus intervals from the drift-corrected data were computed, and their distribution was fit with a Gaussian probability density function. Using the parameters of the Gaussian fit, responses whose pre-stimulus means were more than three standard deviations from the overall mean were excluded from further analysis (“bad-zero” records). 36 responses were excluded on this basis. The mean of the remaining 314 prestimulus means (a scalar DC offset for the entire experiment) was calculated and subtracted from each record, ensuring that all responses used for analysis start from zero, on average.</p><p>One additional response containing a large negative artifact was manually excluded, leaving 313 dim-flash response records for analysis.</p></sec><sec><title>Classification of Responses as Failures, SPRs, or Multiple-photon Responses (MPRs)</title><p>SPRs were identified from analysis of the histogram of response amplitudes. Amplitude was defined as the scaling factor providing the best (least squares) fit of the normalized mean response to each individual response. Fits were carried out over the time interval between t = 0 (time of the stimulus) and the time to peak (1.91 s) of the ensemble mean response (<xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). A sum of Gaussians model (<xref rid="bib11" ref-type="bibr">Del Castillo and Katz, 1954</xref>; <xref rid="bib3" ref-type="bibr">Baylor et al., 1979</xref>) was then fit to the histogram, yielding estimates of the mean number of photon absorptions, mean SPR amplitude, SPR amplitude variance, and additive background noise variance, for the underlying distribution. These four parameters were used to determine analytically a range of amplitudes where the probability that the response resulted from a single photon absorption was ≥50%. Responses were classified as either failures, SPRs, or MPRs on the basis of whether their amplitude fell below, within, or above this range. In simulations, this approach turned out to provide high sensitivity and positive predictive value (>95% for each).</p></sec><sec><title>Isolation of SPR Variance</title><p>To separate variability due to background noise from stochastic variability in the actual underlying response to photon absorption, we subtract the variance of responses classified as failures from the variance of those classified as SPRs. In any subsequent discussion of SPR variability, this correction is implied. This technique is used in the CV calculations for SPR amplitude and SPR area, as well as in the time-varying SPR variance plot described below.</p></sec><sec><title>SPR Area</title><p>In the first new analysis, we were interested in <italic>CV</italic>
<sub>area</sub> for the SPR (<xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). For each failure and SPR (identified by the method just described) we integrated the response from time zero until the end of the recording epoch at t = 9 s. <italic>CV</italic>
<sub>area</sub> was calculated as the square root of the variance difference between SPRs and failure areas, divided by the mean SPR area.</p></sec><sec><title>Squared Mean SPR Versus SPR Variance</title><p>Another new analysis was a comparison of the time-varying ensemble variance (σ<sub>SPR</sub>
<sup>2</sup>) and squared mean (μ<sub>SPR</sub>
<sup>2</sup>), for identified SPRs only. This analysis was presented in <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>, and featured prominently in <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref>.</p><p>The other two variability measures we used had also been used in <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>: a histogram of dim-flash response amplitudes and calculation of <italic>CV</italic>
<sub>ampl</sub>, and a comparison of the variance of the full dim-flash ensemble (σ<sub>dim</sub>
<sup>2</sup>) with the squared mean (μ<sub>dim</sub>
<sup>2</sup>).</p></sec></sec><sec><title>RESULTS</title><sec><title>A Diverse Suite of Empirical Data Provides Strong Constraints on Any Model</title><p>
<xref rid="fig3" ref-type="fig">Fig. 3</xref> shows the empirical data with which the model results are compared. Eight data panels are shown. <xref rid="fig3" ref-type="fig">Fig. 3, A–E</xref>, shows analyses of original data from <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>. <xref rid="fig3" ref-type="fig">Fig. 3</xref> A shows the waveforms of 101 responses classified as SPRs (red), 51 responses classified as multiple photon absorptions (MPRs, green), and 161 waveforms classified as failures (gray). The solid blue curve is the ensemble mean of the SPRs. With the help of the color-coding, it is evident that the dim-flash responses are fairly well grouped, with the SPRs and MPRs being distinguishable from the failures, indicating the regularity of the elementary response.</p><p>In our analyses, we use four empirical measures of SPR variability/reproducibility to evaluate each model.</p></sec><sec><title>Variability of SPR Amplitude</title><p>A classical method of quantifying the variability of the SPR amplitude is to plot a histogram of the dim-flash amplitudes (<xref rid="fig3" ref-type="fig">Fig. 3</xref> B) and fit a statistical (sum-of-Gaussians) model (black curve) to the histogram of dim-flash response amplitudes. As described in <sc>materials</sc>
<sc>and</sc>
<sc>methods</sc>, we used the model fit to define amplitude boundaries with which to classify responses statistically as most likely resulting from zero, one, or multiple photon absorptions. The subset of the histogram resulting from SPRs identified by this method is shown as a red overlay. The CV of SPR amplitudes for the Whitlock and Lamb data estimated in this manner is 0.15, which is somewhat lower than some previously published values (∼0.20; <xref rid="bib3" ref-type="bibr">Baylor et al., 1979</xref>; <xref rid="bib58" ref-type="bibr">Schneeweis and Schnapf, 1995</xref>; <xref rid="bib52" ref-type="bibr">Rieke and Baylor, 1998a</xref>; <xref rid="bib61" ref-type="bibr">Whitlock and Lamb, 1999</xref>; <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). The relatively low <italic>CV</italic>
<sub>ampl</sub> is due to the definition of amplitude we used and our method of classification of responses. Larger values would be obtained using our classification scheme if amplitude were defined as in <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>, or if we had estimated CV from the parameters of the sum-of-Gaussians fit. The SPRs identified from the amplitude histogram were used in the analysis of SPR area (<xref rid="fig3" ref-type="fig">Fig. 3</xref> D) and SPR variance over time (<xref rid="fig3" ref-type="fig">Fig. 3</xref> E).</p></sec><sec><title>Dim-flash Variance Versus Dim-flash Squared Mean</title><p>A second measure of variability is based on comparing the light-evoked ensemble variance increase and the square of the ensemble mean (<xref rid="bib57" ref-type="bibr">Schnapf, 1983</xref>; <xref rid="bib52" ref-type="bibr">Rieke and Baylor, 1998a</xref>). <xref rid="fig3" ref-type="fig">Fig. 3</xref> C shows this classical comparison between the σ<sub>dim</sub>
<sup>2</sup>(red) and the μ<sub>dim</sub>
<sup>2</sup> (blue) for the Whitlock and Lamb data. The variance increase was calculated by subtraction of the variance of the failures from the variance of all responses. As in <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref>, our reanalysis of their data shows virtually the same relationship between σ<sub>dim</sub>
<sup>2</sup> and μ<sub>dim</sub>
<sup>2</sup>.</p><p>This measure of SPR variability has some limitations. <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> pointed out that, although a stereotyped elementary response will necessarily lead to a close match between the variance and squared mean responses, a close match between these does not necessarily imply a high degree of SPR reproducibility. This is because, for dim flashes, the variance is dominated by Poisson noise stemming from the quantal nature of light. Thus, the result in <xref rid="fig3" ref-type="fig">Fig. 3</xref> C only shows that the SPR variability over time was not of sufficient magnitude to dominate the Poisson variability of the light stimulus.</p><p>In we extend Whitlock and Lamb's insight about the limitations of this analysis, and provide a quantitative interpretation of the relationship between the squared mean response and variance of the response. Despite these caveats, this analysis can help to evaluate models since failure of proportionality between σ<sub>dim</sub>
<sup>2</sup> and μ<sub>dim</sub>
<sup>2</sup> does imply nonstereotypic SPRs.</p></sec><sec><title>Variability of SPR Area</title><p>A third gauge of SPR variability is the variability of the response area for SPRs. The motivation for the area analysis comes from the fact that, as <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref> pointed out, the area under the response waveform is expected to be a good gauge of overall response variability since it includes the effects of response variability throughout the entire response waveform. Apart from this pragmatic consideration, there is a theoretical basis for using the variability in response area (over other measures) in the analysis of mechanisms of SPR reproducibility. In <sc>discussion</sc>, we show why it is the CV of SPR area, and not the CV of either SPR amplitude or duration, that tracks the variability in integrated R* activity, and hence, can provide an estimate of the number of underlying R* inactivation steps.</p><p>A histogram of dim-flash response areas for the Whitlock and Lamb data is shown in <xref rid="fig3" ref-type="fig">Fig. 3</xref> D. This analysis was not presented in the original <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> paper. The red overlay in the histogram shows the subset of areas from the responses that had been classified as SPRs in <xref rid="fig3" ref-type="fig">Fig. 3</xref> B. The CV for area for the SPRs derived in this fashion was 0.36, similar to values recently reported for mammalian rods (∼0.3, <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). Using our sequential phosphorylation model, we found that after 1000 random additions of simulated noise to a single Monte-Carlo run of 350 trials (dim flashes), 95% of the estimates for CV of SPR area fell in the interval 0.30 to 0.44.</p></sec><sec><title>SPR Variance Versus SPR Squared Mean</title><p>The fourth measure of SPR reproducibility comes from an analysis of the time-dependent residual variability of the SPRs (<xref rid="fig3" ref-type="fig">Fig. 3</xref> E). This analysis was introduced by <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>(see their <xref rid="fig5" ref-type="fig">Fig. 5</xref>) and was featured prominently in a recent paper by <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref>. The panel depicts the time course of the noise-corrected SPR variance (red curve; SPR variance minus failure variance) and the square of the mean SPR (blue curve). The SPRs were categorized in the same manner as for the amplitude histogram in <xref rid="fig3" ref-type="fig">Fig. 3</xref> B. As noted in <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> and <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref>, σ<sub>SPR</sub>
<sup>2</sup> is approximately an order of magnitude smaller than μ<sub>SPR</sub>
<sup>2</sup> until after the peak of the squared-mean response. In addition, σ<sub>SPR</sub>
<sup>2</sup> peaks much later than μ<sub>SPR</sub>
<sup>2</sup> (1.5 times), and is broader. <xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref> emphasized that these features provide constraints on models of SPR reproducibility, aiding in the discrimination between models.</p><p>Aside from the variability/reproducibility measures described above, other data in the literature provide additional constraints on any candidate model.</p></sec><sec><title>Transduction Gain Manipulation by Alteration of Nucleotide Levels</title><p>
<xref rid="fig3" ref-type="fig">Fig. 3, F and G</xref>, reproduces data from Fig. 14 of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> showing the effects of lowering transduction gain in the presence of normal (500 μM) or low (20 μM) ATP levels in dialyzed toad rod outer segments. With normal ATP (<xref rid="fig3" ref-type="fig">Fig. 3</xref> F), lowering GTP by a factor of 2.5 caused the dim-flash response amplitude to decrease with no effect on the response kinetics. The kinetics were slowed by the GTP manipulation, however, if phosphorylation was substantially slowed by reducing ATP (<xref rid="fig3" ref-type="fig">Fig. 3</xref> G). <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> interpreted these results to imply that neither phosphorylation nor arrestin-binding controlled the majority of rhodopsin's cumulative activity. We will show that this pattern of results under GTP and ATP manipulation does not rule out phosphorylation dominating R* inactivation, contrary to Rieke and Baylor's reasoning.</p></sec><sec><title>Genetic Knockout (KO) and Transgenic Manipulations</title><p>Implementation of a detailed stochastic model offers an opportunity to simulate genetic KO or transgenic substitution experiments targeting mechanisms expected to affect activation, inactivation or feedback in the phototransduction cascade. In the present study, we evaluate the ability of the model to predict the results from three recent experiments that genetically manipulated R* shutoff mechanisms, plus one experiment in which feedback synthesis of cGMP was disrupted. The results of these studies are reproduced in <xref rid="fig3" ref-type="fig">Fig. 3</xref> H. The panel shows data obtained from mouse rods that had six major phosphorylation sites on the rhodopsin C-terminus disabled by substitution of alanine for the WT serine and threonine residues normally occurring at these sites (green: complete substitution, or CSM, rods; <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>), that had Arr knocked out (red: Arr−/−; <xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>), or RK−/− (blue: <xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>), or GCAPs−/− (orange: <xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>). The WT responses from each of these studies are shown in <xref rid="fig3" ref-type="fig">Fig. 3</xref> H as thin curves. The WT responses were scaled to the same relative peak amplitude (1.0), but the relationship to the corresponding genetically manipulated responses in each case was not altered.</p><p>Both the RK−/− and CSM responses rose at the same rate as the WT until ∼100 ms, and continued to rise until they reached a peak ∼2 times the WT peak amplitude. The SPRs in both CSM and RK−/− rods were step-like, shutting off abruptly at highly variable times. Histograms of the duration of SPRs from CSM and RK−/− rods were approximately exponential, with time constants of 5.1 and 3.3 s, respectively. The Arr−/− responses reached approximately the same peak amplitude as the WT responses, then exhibited a partial recovery with nearly normal kinetics. When viewed on a long time scale, the mean Arr−/− responses manifested the initial, relatively rapid recovery phase, and then settled into a long, slow recovery phase (with a mean recovery time constant = 51 s; results not shown here).<xref ref-type="fn" rid="fn4">4</xref> The GCAPs−/− responses rose with ∼WT kinetics to peak at ∼4 times the WT amplitude at ∼300 ms.</p></sec><sec><title>The Sequential Phosphorylation Model Accounts for All the Data Examined</title><p>The sequential phosphorylation model dramatically reduces SPR variability relative to the expected behavior of a single-step inactivation model, bringing it to empirical values. The model yields the correct qualitative behavior in all tests, including reproduction of the <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> transduction gain manipulation experiments (<xref rid="fig4" ref-type="fig">Fig. 4, F and G</xref>) , as well as the response features from four genetic knockout and transgenic studies: three in rods in which R* inactivation mechanisms had been genetically disrupted (<xref rid="bib64" ref-type="bibr">Xu et al., 1997</xref>; <xref rid="bib8" ref-type="bibr">Chen et al., 1999</xref>; <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>), and one in which feedback synthesis of guanylate cyclase has been disabled (<xref rid="bib5" ref-type="bibr">Burns et al., 2002</xref>).</p><fig id="fig4" position="float"><label>F<sc>igure</sc> 4. </label><caption><p>Predictions of sequential phosphorylation model. The model generates SPRs with empirical reproducibility (B–E) and captures all the other data, including the salient features of the transgenic and KO mouse rod data (H). The model responses include the addition of simulated recording and photoreceptor noise and response failures (<sc>materials</sc>
<sc>and</sc>
<sc>methods</sc>). All the analyses of the model responses were carried out using the same methodology as was applied to Whitlock and Lamb's data in <xref rid="fig3" ref-type="fig">Fig. 3</xref>. The CV of SPR amplitudes identified statistically (red overlay in B) was 0.16, nearly identical to the value obtained from the <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> data (0.15; <xref rid="fig3" ref-type="fig">Fig. 3</xref> B). The CV for SPR amplitudes when SPRs were identified perfectly (solid blue curve in B) was 0.20, illustrating that our statistical method of response classification was working well (see text for details). The SPR variability (<italic>CV</italic>
<sub>area</sub> = 0.38) was close the empirical value (0.36) from the Whitlock and Lamb data (compare panel D with <xref rid="fig3" ref-type="fig">Fig. 3</xref> D). The <italic>CV</italic>
<sub>area</sub> for SPRs identified perfectly (0.42, blue curve in D) was close to the value for SPRs identified with our statistical method (0.38, red overlay in D). The inset in D shows the distribution of the number of phosphorylations at Arr-capping, with the vertical red line marking the mean (6.1). As in the data, the variance of the SPRs peaked much later than the squared mean of the SPRs (1.6 times later; E). The sequential phosphorylation model also reproduces the transduction gain manipulation data from Fig. 14 of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> (F and G). F shows the results of a simulation under the control ATP condition. The decrease in GTP by a factor of 2.5 (blue: control GTP; red: low-GTP) decreases transduction gain (shown in inset) without significantly altering the kinetics of the response (shown by the larger normalized curves). However, when ATP is lowered by a factor of 25 (G) as in <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>, the same GTP manipulation decreased the gain (inset) and slowed the kinetics of the response (compare with F and G, <xref rid="fig3" ref-type="fig">Fig. 3</xref>). The peak amplitudes of the responses shown in the two insets in F and G were, control ATP: 4.7 pA (control GTP), 2.6 pA (low GTP); low ATP: 9.6 pA (control GTP), 5.5 pA (low GTP). The absolute amplitudes were lower than those reported in <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> because we simulated single-photon responses, not responses to 10 R*. These results show that, contrary to <xref rid="bib52" ref-type="bibr">Rieke and Baylor's (1998a)</xref> interpretation of their data, this pattern of responses under nucleotide manipulation is not incompatible with phosphorylation dominating R* inactivation.</p></caption><graphic xlink:href="200308832f4"/></fig></sec><sec><title>Realistic Dim-flash Responses</title><p>The model generates responses that look closely similar to the real data (compare <xref rid="fig4" ref-type="fig">Fig. 4</xref> A with <xref rid="fig3" ref-type="fig">Fig. 3</xref> A). The similarity between the simulated and real responses may be evaluated more quantitatively by the four variability tests, and by simulation of other experimental manipulations.</p></sec><sec><title>Low SPR Variability Matches Empirical Values</title><p>The relatively low response variability can be seen in raw model responses (<xref rid="fig4" ref-type="fig">Fig. 4</xref> A), where the simulated response failures, SPRs and MPRs, can be distinguished. The distribution of amplitudes (<xref rid="fig4" ref-type="fig">Fig. 4</xref> B) reproduces the behavior obtained empirically (<xref rid="fig3" ref-type="fig">Fig. 3</xref> B). The subset of amplitudes classified as SPRs by the statistical method used in analysis of the Whitlock and Lamb data is shown as a red overlay. The solid blue curve in panel B depicts the histogram of the amplitudes of the actual SPRs (which, unlike in the electrophysiological data, can be identified perfectly in the simulated responses). This illustrates that our method of amplitude measurement and response classification identifies SPRs in the presence of (simulated) recording and photoreceptor noise with high statistical accuracy (sensitivity and positive predictive value both exceed 95%).</p><p>The CV for SPR amplitudes identified statistically is 0.16, nearly identical to the value we derived from the Whitlock and Lamb data (0.15; <xref rid="fig3" ref-type="fig">Fig. 3</xref> B). The close match between the <inline-formula><tex-math id="M38">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathrm{{\mu}}}_{{\mathrm{dim}}}^{{\mathrm{2}}}\end{equation*}\end{document}</tex-math></inline-formula> (blue) and the scaled σ<sub>dim</sub>
<sup>2</sup>(red) in <xref rid="fig4" ref-type="fig">Fig. 4</xref> C indicates that SPR and MPR variability is low enough to allow the ensemble variance to be dominated by variability in the number of photon absorptions.</p><p>The distribution of SPR areas is Gaussian like (<xref rid="fig4" ref-type="fig">Fig. 4</xref> D, red overlay) with a low CV of 0.38 that nearly matches the <italic>CV</italic>
<sub>area</sub> in the Whitlock and Lamb toad rod data (0.36; <xref rid="fig3" ref-type="fig">Fig. 3</xref> D). This value is somewhat larger than the only other value reported in the literature (∼0.30 for mammalian <italic>CV</italic>
<sub>area</sub>; <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>).</p><p>The CV for SPR area produced by the model (0.38) is close to the theoretical limit for an eight-step model (0.35; see Eq. <inline-formula><tex-math id="M39">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}16\end{equation*}\end{document}</tex-math></inline-formula>, <sc>discussion</sc>), and reflects the contribution of approximately seven of the eight possible inactivation steps. The reason that all eight possible steps did not contribute is that, in our model, the R–Arr affinity increases monotonically with the number of phosphorylations and there is a finite probability of Arr capping as early as the first phosphorylation. Thus, Arr capping occurs before the maximum number of phosphorylations. On average, R* was capped when 6.1 of the 7 possible phosphorylations had occurred (<xref rid="fig4" ref-type="fig">Fig. 4</xref> D, inset), corresponding to a total of ∼7 shutoff steps (including Arr-capping), which is in agreement with the observed <italic>CV</italic>
<sub>area</sub> (<tex-math id="M40">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{1}/{ \left \left(\sqrt{7}\right) \right }\end{equation*}\end{document}</tex-math>=0.38). The fact that <italic>CV</italic>
<sub>area</sub> achieves the theoretical limit for the mean number of phosphorylations at shutoff indicates that the relative rates of G* activation and R* phosphorylation across phosphorylation states were nearly optimal.</p><p>The sequential phosphorylation model also reproduces the empirical relationship between μ<sub>SPR</sub>
<sup>2</sup>and σ<sub>SPR</sub>
<sup>2</sup> (compare panel E in <xref rid="fig4" ref-type="fig">Figs. 4</xref> and <xref rid="fig3" ref-type="fig">3</xref>). The σ<sub>SPR</sub>
<sup>2</sup> waveform peaks at 1.6 times the time-to-peak of μ<sub>SPR</sub>
<sup>2</sup>, close to the peak shift when this analysis is applied to the Whitlock and Lamb data (1.5 times; <xref rid="fig3" ref-type="fig">Fig. 3</xref> E).</p></sec><sec><title>Rieke and Baylor's Transduction Gain Manipulation Is Reproduced</title><p>The sequential phosphorylation model captures the transduction gain manipulation data from Fig. 14 of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>. <xref rid="fig4" ref-type="fig">Fig. 4</xref> F shows the results of a simulation under the control ATP condition. The decrease in GTP by a factor of 2.5 affects transduction gain (shown in inset) without significantly altering the kinetics of the response (shown by the larger normalized curves). However, when ATP is lowered by a factor of 2.5 (<xref rid="fig4" ref-type="fig">Fig. 4</xref> G), the same GTP manipulation slowed the kinetics of the response in addition to decreasing the gain (inset). This finding is significant and will be discussed further in the <sc>discussion</sc>.</p></sec><sec><title>Qualitative Features of Transgenic and Genetic Knockout Data Are Reproduced</title><p>The sequential phosphorylation model reproduces the salient qualitative and quantitative features of the Arr−/−, CSM, RK−/− and GCAPs−/− genetic manipulations (<xref rid="fig4" ref-type="fig">Fig. 4</xref> H). Allowing for the difference in timing between mammalian and amphibian rods, the model does well at capturing these features. These simulated responses represent predicted responses if the same genetic manipulations were performed in toad rods as were done in the mouse rods.</p></sec><sec><title>Analytical Expression for R* Activity and the Time Course of R* Inactivation</title><p>Because G-protein competes with RK and Arr, and because of reversibility in some of these reactions (Eqs. <inline-formula><tex-math id="M41">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}1{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M42">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}\end{equation*}\end{document}</tex-math></inline-formula> and <inline-formula><tex-math id="M43">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathrm{b}}\end{equation*}\end{document}</tex-math></inline-formula>), G* activation rate (i.e., R* activity) is a complicated function of 10 front-end parameters. Thus, it is not feasible to identify a single parameter that controls the maximum G* activation rate or its dependence on <italic>n</italic>, the phosphorylation state of R*. However, we have solved the stochastic front-end equations to obtain an analytical expression for the mean steady-state activity of R* conditioned on the continued circulation of R* around the catalytic loop. This can be thought of as the rate of G* production at a late time (after the initial appearance of R* in a given phosphorylation state), averaged over all cases where neither capping nor further phosphorylation has yet occurred. The expression thus derived gives a theoretical rate of G* activation per R* (i.e., <italic>ν<sub>RG</sub></italic>, in s<sup>−1</sup>) that is not physically observable, and therefore is not exactly the same as the chemical reaction rate of G* production. However, because R* typically circulates around the catalytic loop many times before being phosphorylated or capped, we can expect that the true maximum rate of G* production achieved will be close to this theoretical value. Although we do not show the full expression here, it can be approximated by the expression shown in <xref ref-type="disp-formula" rid="eqn21">Eq. 14</xref>.</p><p>Here, R* activity depends on 6 rate constants, plus the phosphorylation state of R*, <italic>n</italic>. Substituting for the rate constants in <xref ref-type="table" rid="tbl1">Table 1</xref>, and combining <xref ref-type="disp-formula" rid="eqn1">Eq. 4</xref> with <xref ref-type="disp-formula" rid="eqn21">Eq. 14</xref> we obtain <disp-formula id="eqn10"><label>(15)</label><tex-math id="M44">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{\mathrm{{\nu}}}_{RG} \left \left(n\right) \right \approx \frac{1}{0.0065+0.00035e^{{\mathrm{{\omega}}}n}}{\mathrm{,}}\end{equation*}\end{document}</tex-math></disp-formula>which gives a theoretical rate of activation of 146 G*/s at <italic>n</italic> = 0, consistent with recent estimates in the literature (e.g., <xref rid="bib34" ref-type="bibr">Leskov et al., 2000</xref>). From these equations, we can predict the R* activity for each phosphorylation state, and, in particular, if Arr-quench occurs between <italic>n</italic> = 6 and <italic>n</italic> = 7 phosphorylations, the R* activity will have decayed to ∼35% or 23% of its initial level, respectively. Thus, theory shows that decay of R* activity is dominated by phosphorylation in our model.</p><p>Using our model, and simulations of genetic manipulations, we can illustrate the relative contributions of phosphorylation and Arr-binding to the inactivation process. To do this, we recorded the mean G-activation rate from 1,000 simulated SPRs under three conditions, the results of which are all illustrated in <xref rid="fig5" ref-type="fig">Fig. 5</xref> : (a) WT (i.e., using our sequential phosphorylation model; blue curve), where both phosphorylation and Arr-capping contribute to R* inactivation. (b) CSM (green curve), depicting the case where both phosphorylation and Arr-quench are disabled. In the absence of phosphorylation, R* activity goes to a fixed, steady-state level close to the theoretical initial maximal R* activity of ∼146 G*/s (derived from <xref ref-type="disp-formula" rid="eqn10">Eq. 15</xref>, for <italic>n</italic> = 0). (c) Arr−/− (red curve) depicting the case where final Arr-quench is disabled, but phosphorylation is not. Thus, this curve depicts the mean reduction in R* activity due to phosphorylation <italic>per se</italic>.</p><fig id="fig5" position="float"><label>F<sc>igure</sc> 5. </label><caption><p>Numerical simulations showing that phosphorylation dominates R* inactivation. Mean R* activity (defined as G* activations s<sup>−1</sup>) in response to a single photon absorptions was simulated by recording the stochastic G–activation events associated with each of 1,000 SPRs under three conditions: (1) WT (i.e., using our sequential phosphorylation model; blue curve). Here, both phosphorylation and Arr-capping contribute to R* inactivation. (2) CSM (green curve). Both phosphorylation and Arr-quench are disabled. In the absence of phosphorylation, R* activity goes to a fixed, steady-state level close to the theoretical initial maximal R* activity of ∼146 G*/s (derived from <xref ref-type="disp-formula" rid="eqn10">Eq. 15</xref>, for <italic>n</italic> = 0). (3) Arr−/− (red curve). Arr-quench is disabled, but phosphorylation is not. Thus, this curve depicts the mean reduction in R* activity due to phosphorylation per se. These three R* activity curves demonstrate qualitatively that phosphorylation dominates R* inactivation at all times, including at the mean time of Arr-quench (vertical dotted line at 2.7 s). This was quantified in the following manner: For each of 1,000 Monte-Carlo trials under the WT condition, the fractional decrease in R* activity, due to phosphorylation alone, at the time of Arr-quench was measured. The average of these 1,000 values was taken as a measure of the mean fractional decrease of R* activity due to phosphorylation alone. The decrease in R* activity at measured in this way was 66%, with Arr-quench accounting for the remaining 34% of R* activity reduction.</p></caption><graphic xlink:href="200308832f5"/></fig><p>The three R* activity curves in <xref rid="fig5" ref-type="fig">Fig. 5</xref> demonstrate qualitatively that phosphorylation dominates R* inactivation. In order to quantify the fractional decrease of R* activity due to phosphorylation alone, we calculated the decrement in R* activity at the time of Arr-quench for each of the 1,000 Monte-Carlo trials, and then averaged these decrements. The decrease in R* activity due to phosphorylation measured in this way was 66% of the unphosphorylated activity, with Arr-quench accounting for the remaining 34% of R* activity reduction. This shows, by numerical simulation, that phosphorylation dominates R* inactivation in the sequential phosphorylation model.</p><p>These results are expected from general theoretical considerations if optimal variability reduction is to be achieved: when Arr quench of R* activity is only one final step out of eight potential inactivation steps, the multiple steps of phosphorylation preceding Arr-binding must dominate R* inactivation. Otherwise, the stochastic nature of the final Arr-binding would contribute a disproportionate amount of variability to the overall inactivation process.</p></sec></sec><sec><title>DISCUSSION</title><sec><title>Detailed Stochastic Modeling</title><p>We have presented analytic and computational methods with general application for testing theories of the reproducibility of the SPR of retinal rods. The computational methods are based on detailed stochastic modeling of the underlying biochemical kinetics and utilize Monte-Carlo simulations. Our emphasis was on testing the sequential phosphorylation model inspired by the biochemical experiments of <xref rid="bib15" ref-type="bibr">Gibson et al. (2000)</xref> showing that the affinity of phosphorylated rhodopsin for G-protein declines exponentially with phosphorylation number, while the affinity of phosphorylated rhodopsin for arrestin grows linearly with phosphorylation number. In addition, as discussed below, we have simulated some experiments and analyses of <xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> in order to evaluate their evidence that calcium feedback plays a central role in the reproducibility of rod responses.</p></sec><sec><title>Conclusions about the Sequential Phosphorylation Model</title><p>Previous authors have suggested that the processes of phosphorylation and arrestin binding may constitute multiple steps of R* inactivation that contribute to reducing SPR variability (e.g., <xref rid="bib61" ref-type="bibr">Whitlock and Lamb, 1999</xref>; <xref rid="bib15" ref-type="bibr">Gibson et al., 2000</xref>; <xref rid="bib38" ref-type="bibr">Mendez et al., 2000</xref>; <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>). Using a full stochastic, biochemical model, our simulations and analyses demonstrate quantitatively for the first time that multiple phosphorylation of R* (plus Arr-binding) can account for the SPR reproducibility observed in vertebrate rods. Sequential, phosphorylation-dependent ratcheting down of R* activity, and ratcheting up of inactivation rate, can change the distribution of R* lifetimes from approximately exponential (with CV ≈ 1) to a much less variable distribution, substantially reducing the variability of SPR amplitude, kinetics, and area below the levels that would otherwise occur if R* were shut off in a single, memoryless step (see ; compare <xref rid="fig4" ref-type="fig">Figs. 4</xref> and 8).</p><p>We found that the sequential phosphorylation model accounts for the four measures of reproducibility and generates responses that exhibit the correct features in almost all details. The model also accounts for the signature qualitative features of four genetic experiments in mouse rods (see <xref rid="fig4" ref-type="fig">Fig. 4</xref> H). The match to these data was achieved without any additional parameter adjustments, other than the simulation of the genetic manipulation. The model also reproduces the results of one of <xref rid="bib52" ref-type="bibr">Rieke and Baylor's (1998a)</xref> transduction gain experiments that was thought to rule out phosphorylation (and/or Arr-binding) as the dominant mechanism in the deactivation of R*.</p></sec><sec><title>The Transduction Gain Manipulation Experiments of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> Do Not Rule Out R* Phosphorylation as the Dominant Mechanism Controlling R* Inactivation (and Hence SPR Recovery)</title><p>
<xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> reasoned that the low GTP concentration (40% of control) in their transduction gain experiments would increase the amount of time a G-protein spent bound to R*. Because inactive G-protein, RK, and Arr are thought to compete in a mutually exclusive manner for R*, this should reduce the availability of R* for phosphorylation and arrestin capping. Consequently, if phosphorylation and Arr binding were responsible for a large portion of R* inactivation, one would expect both a reduction in amplitude and a slower response recovery in low GTP. They interpreted the result, that transduction gain was reduced and that response kinetics were unchanged, to mean that phosphorylation and arrestin binding do not make a major contribution to the inactivation kinetics of R*. They further tested this hypothesis by lowering ATP to slow phosphorylation so that it would be expected to control a significant fraction of R*'s cumulative activity. Under this condition, lowering GTP by the same amount did significantly slow the response (<xref rid="fig3" ref-type="fig">Fig. 3</xref> G).</p><p>Our simulations reveal that Rieke and Baylor's nucleotide manipulation experiments do not, in fact, rule out R*'s inactivation being dominated by phosphorylation. In the sequential phosphorylation model, R* is inactivated entirely by phosphorylation followed by arrestin capping, with phosphorylation accounting for ∼66% of the total R* activity reduction, and the final Arr-quench accounting for the remaining 34% (<xref rid="fig5" ref-type="fig">Fig. 5</xref>). Yet, as discussed in the following section, when reversibility of some of the early reactions in the cascade is taken into account, we find that the model can reproduce the transduction gain results of Rieke and Baylor.</p></sec><sec><title>Reversibility of Early Reactions in the Cascade Allows the Sequential Phosphorylation Model to Reproduce the Transduction Gain Experiments of <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref>
</title><p>Rieke and Baylor's reasoning would be correct if the reactions governing the interaction between R* and G-protein were unidirectional. The reasons that reversibility in these early reactions allows the sequential phosphorylation model to reproduce the <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> nucleotide manipulation results may be understood in the following way.</p><sec><title>Lowered GTP in the presence of normal ATP (<xref rid="fig3" ref-type="fig">Figs. 3</xref> F and 4 F).</title><p>Reversibility of the interactions between R* and G-protein creates two possible outcomes for a G-protein molecule that has formed a complex with R*. It can dissociate from R* either in its active form, after replacement of the GDP by GTP (the catalytic route), or while still in the inactive GDP-bound form (see Eq. <inline-formula><tex-math id="M45">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula>).</p><p>Lowering the intracellular GTP concentration decreases the likelihood of G-proteins taking the catalytic route, so that a G·GDP molecule requires a greater number of R* encounters, on average, before it is activated. This, of course, reduces the rate of G·GTP formation, i.e. the gain of the response. In addition to decreasing the probability of catalysis, decreasing the GTP concentration will also increase the average time between the formation and dissociation of an R–G·GDP complex (whether by the catalytic or non-catalytic pathway). The increase in lifetime of R–G complexes will perforce slow phosphorylation and Arr-binding, due to the competitive nature of the interaction with R*.</p><p>Thus, <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> were correct to conclude that, in addition to lowering the gain, the increase in lifetime of the R–G complexes would lead to a slowing of inactivation kinetics, if phosphorylation and arrestin controlled R* shutoff. However, we found that if the rate constants in Eq. <inline-formula><tex-math id="M46">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}3{\mathrm{a}}{\raisebox{1mm}{\line(1,0){6}}}{\mathrm{c}}\end{equation*}\end{document}</tex-math></inline-formula> are such that the net probability of proceeding along the noncatalytic path (i.e., back to free R* plus G·GDP) is made sufficiently high, the lifetime of the R–G complex can be made to be much less sensitive to changes in GTP concentration than is the rate of catalysis. In particular, our parameters yield a probability of ∼0.3 that free R* will emerge from complex with G via the catalytic pathway, and a probability of 0.7 that it will proceed along the noncatalytic route. Under such conditions, our analysis shows that, with only phosphorylation and Arr binding to inactivate R*, a decrease in GTP concentration can cause a substantial decrease in gain but almost no slowing of kinetics (<xref rid="fig4" ref-type="fig">Fig. 4</xref> F).</p></sec><sec><title>Lowered GTP in the presence of low ATP (<xref rid="fig3" ref-type="fig">Figs. 3</xref> G and 4 G).</title><p>When the concentration of ATP is low, the slowing of kinetics elicited by the lowered GTP concentration will no longer be negligible. The lowered ATP concentration reduces the rate of phosphorylation of R* by RK, so that a given R* molecule will bind a substantially greater number of G-proteins in each of its phosphorylation states. Since each and every G-bound state of R* represents a timeout from the inactivation reactions, summing across a greater number of such timeouts magnifies the absolute difference in inactivation rate between the control and low GTP conditions.</p></sec><sec><title>Without reversibility.</title><p>When the R–G reactions are assumed to be unidirectional, the R–G complexes are unable to take the noncatalytic route, so that the GTP manipulation leading to a gain reduction will necessarily cause a comparable increase in the lifetime of the complex, and this in turn will slow the rate of phosphorylation and Arr capping, and hence the overall response kinetics. Thus, when reversibility is not included in these reactions, the only way of accounting for Rieke and Baylor's GTP/ATP manipulation data would be if R* inactivation occurred primarily by mechanisms that were not competitive with G-protein (e.g., Rieke and Baylor's putative multiple R* transitions).</p><p>For the sake of completeness we implemented such a modification to our stochastic model, and we found (as expected) that it failed to account for the results presented by <xref rid="bib52" ref-type="bibr">Rieke and Baylor (1998a)</xref> in their Fig. 14 (unpublished data).</p></sec></sec><sec><title>Stochastic Variability in Activation and Inactivation in the Cascade Is a Significant Source of Variability in Transduction Gain</title><p>
<xref rid="bib61" ref-type="bibr">Whitlock and Lamb (1999)</xref> analyzed variability in the rising phase of SPRs by fitting their discrete model to each response and extracting from each fit <xref rid="bib31" ref-type="bibr">Lamb and Pugh's (1992)</xref> amplification constant, <italic>A</italic>. They found that the CV of <italic>A</italic> was 0.13, and hypothesized that this variability in apparent transduction gain could be due to variability in the packing density of proteins on the 1,000 or so disc surfaces upon which the photoisomerizations occur across stimulus trials (see <xref rid="bib7" ref-type="bibr">Calvert et al., 2001</xref>).</p><p>We have applied this same analysis to the SPRs generated by the sequential phosphorylation model (by fitting Whitlock and Lamb's discrete model to the simulated SPRs in the absence of recording or photoreceptor noise), and find that, as in the physiological data, the simulated SPRs do not have stereotypical rising phases—the CV for <italic>A</italic> is 0.19. Since the model does not have explicit implementation of packing density and diffusion kinetics, nor a mechanism simulating longitudinal variations in transduction gain (<xref rid="bib57" ref-type="bibr">Schnapf, 1983</xref>), and since recording and photoreceptor noise were excluded from this analysis, this result demonstrates that a substantial proportion of the variability in photocurrent activation in the dim-flash regime may be due to the underlying stochastic variability in G-protein and PDE activation per se. The balance of contribution of these different mechanisms remains to be evaluated.</p></sec><sec><title>On the Number of Functional Phosphorylation Sites In Vivo</title><p>Biochemical studies in vitro indicate that seven or more phosphates per rhodopsin are incorporated (<xref rid="bib28" ref-type="bibr">Kühn and Wilden, 1982</xref>; <xref rid="bib63" ref-type="bibr">Wilden and Kühn, 1982</xref>; <xref rid="bib2" ref-type="bibr">Aton et al., 1984</xref>; <xref rid="bib60" ref-type="bibr">Thompson and Findlay, 1984</xref>; <xref rid="bib45" ref-type="bibr">Palczewski et al., 1991</xref>; <xref rid="bib62" ref-type="bibr">Wilden, 1995</xref>). However, there are well-known technical difficulties in determining sufficiently quickly the number and identity of the rhodopsin sites phosphorylated under dim-flash conditions in vivo. For one thing, dephosphorylation events subsequent to physiologic quench can readily cause the number of phosphorylations to be underestimated (<xref rid="bib44" ref-type="bibr">Ohguro et al., 1995</xref>, <xref rid="bib43" ref-type="bibr">1996</xref>; <xref rid="bib23" ref-type="bibr">Hurley et al., 1998</xref>; <xref rid="bib26" ref-type="bibr">Kennedy et al., 2001</xref>; <xref rid="bib36" ref-type="bibr">Maeda et al., 2003</xref>). Thus, in vivo studies have not been able to demonstrate the incorporation of more than one (<xref rid="bib44" ref-type="bibr">Ohguro et al., 1995</xref>, <xref rid="bib43" ref-type="bibr">1996</xref>) or, at most, three or four phosphates per rhodopsin (<xref rid="bib26" ref-type="bibr">Kennedy et al., 2001</xref>). Moreover, these studies were conducted at intensities orders of magnitude above the single-photon level, where rhodopsin kinase may well be saturated, and therefore they may not accurately reflect the incorporation of phosphates under dim-flash conditions.</p><p>A recent study by <xref rid="bib38" ref-type="bibr">Mendez et al. (2000)</xref> has provided evidence that, under physiological conditions, all the available phosphorylation sites are required for the normal kinetics of deactivation of rhodopsin. They used transgenic techniques to substitute various serine and threonine residues in the carboxy-terminal region with alanines, and they found that the rate of recovery of the dim-flash response increased systematically as the number of phosphorylation sites available was increased, implying that all the native phosphorylation sites were needed to support normal inactivation kinetics. While this in vivo study did not actually show that each of these sites underwent phosphorylation, it did show that the presence of all the native sites is important for normal response kinetics. Accordingly, the <xref rid="bib38" ref-type="bibr">Mendez et al. (2000)</xref> results are consistent with our assumption that all seven sites are available for phosphorylation, and furthermore we are not aware of any convincing evidence against the notion that, under single-photon conditions, as many as seven phosphorylations do indeed occur.</p></sec><sec><title>Three Phosphorylation Sites Are Not Sufficient to Account for SPR Reproducibility</title><p>
<xref rid="bib38" ref-type="bibr">Mendez et al. (2000)</xref> concluded that three phosphorylation sites are necessary for normal SPR reproducibility, and we agree with this, but they further concluded that more than three sites do not further improve SPR reproducibility, even though the rate of deactivation may be decreased. However, from theoretical considerations we can show that, in the absence of contributions from other mechanisms, the number of R* inactivation steps needed to achieve the observed SPR reproducibility must be greater than three. For example, our analyses of the sequential phosphorylation scheme show that if multiple, sequential phosphorylation (with Arr capping) is the mechanism that reduces SPR variability, then three phosphorylation sites cannot be sufficient to account for the observed variability in SPR area. The lowest CV for SPR area that three phosphorylations plus Arr-capping could support is 0.50, considerably higher than the empirical values (0.30, mammalian, <xref rid="bib14" ref-type="bibr">Field and Rieke, 2002</xref>; 0.36, amphibian, <xref rid="fig3" ref-type="fig">Fig. 3</xref> D) or the value from simulations with our full model (0.38).</p></sec><sec><title>On the Relationship Between Variability of SPR Amplitude, Duration, and Area, and Its Dependence on the Rate-limiting Reactions in the Phototransduction Cascade</title><p>We will now show that there is not a straightforward relationship between the statistics of the random lifetime of a single activated rhodopsin molecule and the statistics of either dim-flash response amplitude or response kinetics alone. In particular, there is a theoretical tradeoff between variability in SPR amplitude and variability of SPR duration that depends on the kinetics of R* inactivation relative to the kinetics of reactions downstream to R*. Moreover, this tradeoff could be informative in determining what inactivation reactions might be rate-limiting in the recovery of rod responses in the dim-flash regime, since the relative CVs of SPR amplitude, duration, and area may indicate the extent to which R* is or is not rate-limiting in SPR recovery.</p><p>The variability of the photocurrent response in any biochemical kinetic scheme (in which non-linearities subsequent to PDE* production do not play a significant role) is determined by variation in the number of PDE* molecules produced, the time at which they are produced, and the variability in the lifetimes of individual PDE* molecules. In the sections below, we present a theoretical basis for the superiority of CV of SPR area as a measure of variability, and show why variability in SPR amplitude or kinetics alone are, in principle, less informative gauges of the variability.</p></sec><sec><title>The Theoretical Primacy of the Variability of SPR Area</title><p>Let <italic>N</italic> be a stochastic variable representing the cumulative R* activity during the SPR, i.e., the number of transducin molecules activated during R*'s lifetime, and hence the number of activated PDE* subunits. If SPR reproducibility were to derive purely from the regularization of R* activity by a sequence of <italic>n</italic> + 1 inactivation steps (e.g. <italic>n</italic> phosphorylations plus arrestin), then under optimal conditions, the lowest attainable <italic>CV</italic>
<sub>N</sub> (i.e., σ<italic><sub>N</sub></italic>/μ<italic><sub>N</sub></italic>) would be given by <disp-formula id="eqn11"><label>(16)</label><tex-math id="M47">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}CV_{N}{\geq}{1}/{\sqrt{n+1}}{\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>Below we show that <italic>CV</italic>
<sub>area</sub> of the SPR provides a good approximation of the <italic>CV</italic>
<sub>N</sub>, and hence can be used to estimate a lower bound on the number of inactivation steps of R*.</p><p>Consider the net PDE* response to a flash to be the superposition of <italic>N</italic> discrete PDE* responses, each with unit amplitude, random onset time, and random (exponentially distributed) lifetime. The CV of the area under the PDE* waveform (<italic>A</italic>
<sub>PDE</sub>) will be determined entirely by the statistics of <italic>N</italic>. Assuming a linear dim-flash response subsequent to PDE* production, <italic>CV</italic>
<sub>area</sub> for the SPR will equal CV(<italic>A</italic>
<sub>PDE</sub>), which we show in (Eq. C5) can be written as <disp-formula id="eqn12"><label>(17)</label><tex-math id="M48">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}CV_{area}=CV \left \left(A_{PDE}\right) \right =\sqrt{CV_{N}^{2}+{\mathrm{{\mu}}}_{N}^{-1}}{\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>The first term under the square root can be thought of as the component of <italic>CV</italic>
<sub>area</sub> due to variability in the number of PDE* activations per R*. The second term under the square root represents variability, for a given mean number of PDE*, due to stochastic variation in individual PDE* lifetimes. In practice, we have empirical estimates for <italic>CV</italic>
<sub>area</sub> and μ<italic><sub>N</sub></italic>, whereas the variability in <italic>N</italic> has not been directly measured, but can be estimated by a rearrangement of <xref ref-type="disp-formula" rid="eqn12">Eq. 17</xref>.</p><p>
<disp-formula id="eqn13"><label>(18)</label><tex-math id="M49">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}CV_{N}=\sqrt{CV_{area}^{2}-{\mathrm{{\mu}}}_{N}^{-1}}\approx CV_{area}{\mathrm{.}}\end{equation*}\end{document}</tex-math></disp-formula>
</p><p>
<xref rid="bib14" ref-type="bibr">Field and Rieke (2002)</xref>, and our present analyses, find <italic>CV</italic>
<sub>area</sub> in the range of 0.26–0.35. Since the number of PDE* produced by a single activated R* during its lifetime is expected to be on the order of hundreds (e.g., <xref rid="bib65" ref-type="bibr">Yee and Liebman, 1978</xref>; <xref rid="bib22" ref-type="bibr">Heck and Hofmann, 2001</xref>), we expect the term μ<sub><italic>N</italic></sub>
<sup>−1</sup> to be at least an order of magnitude smaller than <italic>CV</italic>
<sub><italic>area</italic></sub>
<sup>2</sup>. Consequently, <italic>CV</italic>
<sub>area</sub> itself provides a close approximation to the variability in integrated R* activity, and therefore the minimum required number of inactivation steps (or, in this case, <italic>n</italic> phosphorylations) can be estimated from <disp-formula id="eqn14"><label>(19)</label><tex-math id="M50">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}n+1{\geq}CV_{area}^{-2}\end{equation*}\end{document}</tex-math></disp-formula>
</p></sec><sec><title>An Inherent Tradeoff Between Variability in SPR Amplitude and Kinetics Depends on What Rate-limits Recovery</title><p>To illustrate how variability in R* activity could manifest as variability in either the amplitude or duration of the response, we now consider two opposing, limiting-case scenarios using, for the sake of clarity, the following simple model: R* activity is assumed to be a rectangular pulse of fixed height and variable duration, and the SPR depends linearly and deterministically on this pulse. In the first scenario, the kinetics of the downstream cascade are assumed to be very fast compared to the typical R* inactivation rates. Here, the response is able to track the R* activity function with little lag, and the photocurrent response itself will also approximate a rectangular pulse. In the limiting-case, the SPR is just a scaled version of the R* activity, so there is no variation in SPR amplitude, and SPR duration will be equal to, and thus have the same variability as, the lifetime of R*.</p><p>In the second scenario, R* inactivation is very fast compared to downstream kinetics, so that with respect to the timescale of the response, R* activity is effectively an impulse. Here, the amplitude of the SPR will scale linearly with the random lifetime of R*. In particular, the coefficient of variation of the SPR amplitude will be the same as that for the random R* lifetime.</p><p>For example, if R* were shut off abruptly, following a series of <italic>x</italic> nonactivity-changing transitions with equally distributed waiting times (and there were no other mechanisms to reduce SPR variability), then the CV of R*'s lifetime would equal <tex-math id="M51">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{1}/{\sqrt{{\mathit{x}}}}\end{equation*}\end{document}</tex-math>. In scenario 1, the CVs of SPR amplitude and duration would be zero and <tex-math id="M52">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{1}/{\sqrt{{\mathit{x}}}}\end{equation*}\end{document}</tex-math>, respectively, while in scenario 2, these values would be reversed. In contrast, the CV of SPR area (see <xref ref-type="disp-formula" rid="eqn11">Eq. 16</xref>) would equal <tex-math id="M53">\documentclass[10pt]{article}
\usepackage{amsmath}
\usepackage{wasysym}
\usepackage{amsfonts}
\usepackage{amssymb}
\usepackage{amsbsy}
\usepackage{mathrsfs}
\usepackage{pmc}
\usepackage[Euler]{upgreek}
\pagestyle{empty}
\oddsidemargin -1.0in
\begin{document}
\begin{equation*}{1}/{\sqrt{{\mathit{x}}}}\end{equation*}\end{document}</tex-math> in both conditions; i.e., independent of the locus of the rate-limiting process in recovery.</p><p>In order to illustrate this tradeoff within the context of a full stochastic biochemical model, we ran Monte-Carlo simulations using seven different values of τ<sub>PDE</sub>, ranging from 0.75 s (R* recovery highly rate-limiting) to 12 s (PDE* recovery highly rate-limiting). The resulting CVs for SPR amplitude, duration, and area are shown in <xref rid="fig6" ref-type="fig">Fig. 6</xref> A. The behavior of the full biochemical model clearly manifests the tradeoff behavior predicted from the limiting case scenarios: <italic>CV</italic>
<sub>ampl</sub> (open squares) is lowest when R* inactivation is rate-limiting, and monotonically increases as the downstream reactions become rate-limiting; conversely, <italic>CV</italic>
<sub>dur</sub> (open triangles) is high and decreases monotonically as the rate-limitation switches from R* to downstream recovery kinetics. However, the corresponding <italic>CV</italic>
<sub>area</sub> (open circles) does not depend on what rate-limits recovery (<italic>CV</italic>