-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcphmd.bib
More file actions
3774 lines (3657 loc) · 170 KB
/
cphmd.bib
File metadata and controls
3774 lines (3657 loc) · 170 KB
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
@ARTICLE{Humphrey_Schulten_1996_J.Mol.Graph.,
title = {{VMD}: visual molecular dynamics},
author = {Humphrey, W and Dalke, A and Schulten, K},
abstract = {VMD is a molecular graphics program designed for the display and
analysis of molecular assemblies, in particular biopolymers such
as proteins and nucleic acids. VMD can simultaneously display any
number of structures using a wide variety of rendering styles and
coloring methods. Molecules are displayed as one or more
``representations,'' in which each representation embodies a
particular rendering method and coloring scheme for a selected
subset of atoms. The atoms displayed in each representation are
chosen using an extensive atom selection syntax, which includes
Boolean operators and regular expressions. VMD provides a
complete graphical user interface for program control, as well as
a text interface using the Tcl embeddable parser to allow for
complex scripts with variable substitution, control loops, and
function calls. Full session logging is supported, which produces
a VMD command script for later playback. High-resolution raster
images of displayed molecules may be produced by generating input
scripts for use by a number of photorealistic image-rendering
applications. VMD has also been expressly designed with the
ability to animate molecular dynamics (MD) simulation
trajectories, imported either from files or from a direct
connection to a running MD simulation. VMD is the visualization
component of MDScope, a set of tools for interactive problem
solving in structural biology, which also includes the parallel
MD program NAMD, and the MDCOMM software used to connect the
visualization and simulation programs. VMD is written in C++,
using an object-oriented design; the program, including source
code and extensive documentation, is freely available via
anonymous ftp and through the World Wide Web.},
journal = {J. Mol. Graph.},
volume = 14,
number = 1,
pages = {33-38},
month = feb,
year = 1996,
language = {en},
doi = {10.1016/0263-7855(96)00018-5}
}
@ARTICLE{Roe_Thomas_2013_J.Chem.TheoryComput.,
title = {{PTRAJ} and {CPPTRAJ}: Software for Processing and Analysis of
Molecular Dynamics Trajectory Data},
author = {Roe, Daniel R and Cheatham, III, Thomas E},
abstract = {We describe PTRAJ and its successor CPPTRAJ, two complementary,
portable, and freely available computer programs for the
analysis and processing of time series of three-dimensional
atomic positions (i.e., coordinate trajectories) and the data
therein derived. Common tools include the ability to manipulate
the data to convert among trajectory formats, process groups of
trajectories generated with ensemble methods (e.g., replica
exchange molecular dynamics), image with periodic boundary
conditions, create average structures, strip subsets of the
system, and perform calculations such as RMS fitting, measuring
distances, B-factors, radii of gyration, radial distribution
functions, and time correlations, among other actions and
analyses. Both the PTRAJ and CPPTRAJ programs and source code
are freely available under the GNU General Public License
version 3 and are currently distributed within the AmberTools 12
suite of support programs that make up part of the Amber package
of computer programs (see http://ambermd.org ). This overview
describes the general design, features, and history of these two
programs, as well as algorithmic improvements and new features
available in CPPTRAJ.},
journal = {J. Chem. Theory Comput.},
publisher = {ACS Publications},
volume = 9,
number = 7,
pages = {3084--3095},
month = jul,
year = 2013,
language = {en},
doi = {10.1021/ct400341p}
}
@BOOK{Case_Kollman_2020,
title = "Amber 2020",
author = "Case, David A and Metin Aktulga, H and Belfon, Kellon and
Ben-Shalom, Ido and Brozell, Scott R and Cerutti, David S and
Cheatham, III, Thomas E and Cruzeiro, Vin{\'\i}cius Wilian D and
Darden, Tom A and Duke, Robert E and Giambasu, George and
Gilson, Michael K and Gohlke, Holger and Goetz, Andreas W and
Harris, Robert and Izadi, Saeed and Izmailov, Sergei A and Jin,
Chi and Kasavajhala, Koushik and Kaymak, Mehmet C and King,
Edward and Kovalenko, Andriy and Kurtzman, Tom and Lee, Taisung
and LeGrand, Scott and Li, Pengfei and Lin, Charles and Liu,
Jian and Luchko, Tyler and Luo, Ray and Machado, Matias and Man,
Viet and Manathunga, Madushanka and Merz, Kenneth M and Miao,
Yinglong and Mikhailovskii, Oleg and Monard, G{\'e}rald and
Nguyen, Hai and O'Hearn, Kurt A and Onufriev, Alexey and Pan,
Feng and Pantano, Sergio and Qi, Ruxi and Rahnamoun, Ali and
Roe, Daniel R and Roitberg, Adrian and Sagui, Celeste and
Schott-Verdugo, Stephan and Shen, Jana and Simmerling, Carlos L
and Skrynnikov, Nikolai R and Smith, Jamie and Swails, Jason and
Walker, Ross C and Wang, Junmei and Wei, Haixin and Wolf, Romain
M and Wu, Xiongwu and Xue, Yi and York, Darrin M and Zhao, Shiji
and Kollman, Peter A",
abstract = "Amber is the collective name for a suite of programs that allow
users to carry out molecular dynamics simulations, particularly
on biomolecules. None of the individual programs carries this
name, but the various parts work reasonably well together, and
provide a powerful framework for many common calculations. The
term Amber is also used to refer to the empirical force fields
that are implemented here. It should be recognized, however,
that the code and force field are separate: several other
computer packages have implemented the Amber force fields, and
other force fields can be implemented with the Amber programs.
Further, the force fields are in the public domain, whereas the
codes are distributed under a license agreement.The Amber
software suite is divided into two parts: AmberTools21, a
collection of freely available programs mostly under the GPL
license, and Amber20, which is centered around the pmemd
simulation program, and which continues to be licensed as
before, under a more restrictive license. Amber20 represents a
significant change from the most recent previous version,
Amber18. (We have moved to numbering Amber releases by the last
two digits of the calendar year, so there are no odd-numbered
versions.) Please see https://ambermd.org for an overview of the
most important changes.AmberTools is a set of programs for
biomolecular simulation and analysis. They are designed to work
well with each other, and with the ``regular'' Amber suite of
programs. You can perform many simulation tasks with AmberTools,
and you can do more extensive simulations with the combination
of AmberTools and Amber itself. Most components of AmberTools
are released under the GNU General Public License (GPL). A few
components are in the public domain or have other open-source
licenses. See the README file for more information.",
publisher = "University of California, San Francisco",
month = jun,
year = 2021,
language = "en"
}
@ARTICLE{Phillips_Tajkhorshid_2020_J.Chem.Phys.,
title = "Scalable molecular dynamics on {CPU} and {GPU} architectures with
{NAMD}",
author = "Phillips, James C and Hardy, David J and Maia, Julio D C and
Stone, John E and Ribeiro, Jo{\~a}o V and Bernardi, Rafael C and
Buch, Ronak and Fiorin, Giacomo and H{\'e}nin, J{\'e}r{\^o}me and
Jiang, Wei and McGreevy, Ryan and Melo, Marcelo C R and Radak,
Brian K and Skeel, Robert D and Singharoy, Abhishek and Wang, Yi
and Roux, Beno{\^\i}t and Aksimentiev, Aleksei and
Luthey-Schulten, Zaida and Kal{\'e}, Laxmikant V and Schulten,
Klaus and Chipot, Christophe and Tajkhorshid, Emad",
abstract = "NAMDis a molecular dynamics program designed for high-performance
simulations of very large biological objects on CPU- and
GPU-based architectures. NAMD offers scalable performance on
petascale parallel supercomputers consisting of hundreds of
thousands of cores, as well as on inexpensive commodity clusters
commonly found in academic environments. It is written in C++ and
leans on Charm++ parallel objects for optimal performance on
low-latency architectures. NAMD is a versatile, multipurpose code
that gathers state-of-the-art algorithms to carry out simulations
in apt thermodynamic ensembles, using the widely popular CHARMM,
AMBER, OPLS, and GROMOS biomolecular force fields. Here, we
review the main features of NAMD that allow both equilibrium and
enhanced-sampling molecular dynamics simulations with numerical
efficiency. We describe the underlying concepts utilized by NAMD
and their implementation, most notably for handling long-range
electrostatics; controlling the temperature, pressure, and pH;
applying external potentials on tailored grids; leveraging
massively parallel resources in multiple-copy simulations; and
hybrid quantum-mechanical/molecular-mechanical descriptions. We
detail the variety of options offered by NAMD for
enhanced-sampling simulations aimed at determining free-energy
differences of either alchemical or geometrical transformations
and outline their applicability to specific problems. Last, we
discuss the roadmap for the development of NAMD and our current
efforts toward achieving optimal performance on GPU-based
architectures, for pushing back the limitations that have
prevented biologically realistic billion-atom objects to be
fruitfully simulated, and for making large-scale simulations less
expensive and easier to set up, run, and analyze. NAMD is
distributed free of charge with its source code at
www.ks.uiuc.edu.",
journal = "J. Chem. Phys.",
volume = 153,
number = 4,
pages = "044130",
month = jul,
year = 2020,
language = "en",
doi ={10.1063/5.0014475}
}
@ARTICLE{Abraham_Lindahl_2015_SoftwareX,
title = {{GROMACS}: High performance molecular simulations through
multi-level parallelism from laptops to supercomputers},
author = {Abraham, Mark James and Murtola, Teemu and Schulz, Roland and
P{\'a}ll, Szil{\'a}rd and Smith, Jeremy C and Hess, Berk and
Lindahl, Erik},
abstract = {GROMACS is one of the most widely used open-source and free
software codes in chemistry, used primarily for dynamical
simulations of biomolecules. It provides a rich set of
calculation types, preparation and analysis tools. Several
advanced techniques for free-energy calculations are supported.
In version 5, it reaches new performance heights, through several
new and enhanced parallelization algorithms. These work on every
level; SIMD registers inside cores, multithreading, heterogeneous
CPU--GPU acceleration, state-of-the-art 3D domain decomposition,
and ensemble-level parallelization through built-in replica
exchange and the separate Copernicus framework. The latest
best-in-class compressed trajectory storage format is supported.},
journal = {SoftwareX},
volume = {1-2},
pages = {19-25},
month = sep,
year = 2015,
doi = {10.1016/j.softx.2015.06.001}
}
@Article{ Henderson_Shen_2021_J.Chem.Inf.Model.,
title = {Exploring the Catalytic Dyad Protonation States and Flap Dynamics of Malarial Plasmepsin II},
author = {Henderson, Jack A. and Shen, Jana},
year = {2021},
volume = {62},
issue = {1},
pages = {150--158},
journal = {J. Chem. Inf. Model.},
language = {en},
doi = {10.1021/acs.jcim.1c01180}
}
@Article{ Chen_Khandogin_2008_Curr.Opin.Struct.Biol.,
title = {Recent Advances in Implicit Solvent-Based Methods for
Biomolecular Simulations},
author = {Chen, Jianhan and {Brooks III}, Charles L. and Khandogin, Jana},
year = {2008},
month = apr,
journal = {Curr. Opin. Struct. Biol.},
volume = {18},
number = {2},
pages = {140--148},
issn = {0959440X},
doi = {10.1016/j.sbi.2008.01.003},
language = {en},
file = {/Users/jana/Zotero/storage/3RYS9GNK/Chen et al. - 2008 -
Recent advances in implicit solvent-based methods .pdf}
}
@Article{ Chen_Shen_2013_Biophys.J.,
title = {Introducing {{Titratable Water}} to {{All}}-{{Atom
Molecular Dynamics}} at {{Constant pH}}},
author = {Chen, Wei and Wallace, Jason A. and Yue, Zhi and Shen,
Jana K.},
year = {2013},
month = aug,
journal = {Biophys. J.},
volume = {105},
number = {4},
pages = {L15-L17},
issn = {00063495},
doi = {10.1016/j.bpj.2013.06.036},
abstract = {Recent development of titratable coions has paved the way
for realizing all-atom molecular dynamics at constant pH.
To further improve physical realism, here we describe a
technique in which proton titration of the solute is
directly coupled to the interconversion between water and
hydroxide or hydronium. We test the new method in
replica-exchange continuous constant pH molecular dynamics
simulations of three proteins, HP36, BBL, and HEWL. The
calculated pKa values based on 10-ns sampling per replica
have the average absolute and root-mean-square errors of
0.7 and 0.9 pH units, respectively. Introducing titratable
water in molecular dynamics offers a means to model proton
exchange between solute and solvent, thus opening a door to
gaining new insights into the intricate details of
biological phenomena involving proton translocation.},
language = {en},
file = {/Users/jana/Zotero/storage/ZI4ISDHV/Chen_BiophysJ_2013_v105_pL15.pdf}
}
@Article{ Chen_Shen_2014_Mol.Simulat.,
title = {Recent Development and Application of Constant {{pH}}
Molecular Dynamics},
author = {Chen, Wei and Morrow, Brian H. and Shi, Chuanyin and Shen,
Jana K.},
year = {2014},
month = aug,
journal = {Mol. Simulat.},
volume = {40},
number = {10-11},
pages = {830--838},
issn = {0892-7022, 1029-0435},
doi = {10.1080/08927022.2014.907492},
language = {en},
file = {/Users/jana/Zotero/storage/2IFPDKHQ/Chen et al. - 2014 -
Recent development and application of constant pH .pdf}
}
@Article{ Chen_Shen_2016_J.Phys.Chem.Lett.,
title = {Conformational {{Activation}} of a {{Transmembrane Proton
Channel}} from {{Constant pH Molecular Dynamics}}},
author = {Chen, Wei and Huang, Yandong and Shen, Jana},
year = {2016},
month = oct,
journal = {J. Phys. Chem. Lett.},
volume = {7},
number = {19},
pages = {3961--3966},
issn = {1948-7185},
doi = {10.1021/acs.jpclett.6b01853},
abstract = {Proton-coupled transmembrane proteins play important roles
in human health and diseases; however, detailed mechanisms
are often elusive. Experimentally resolving proton
positions and structural details is challenging, and
conventional molecular dynamics simulations are performed
with preassigned and fixed protonation states. To address
this challenge, here we illustrate the use of the
state-of-the-art continuous constant pH molecular dynamics
(CpHMD) to directly describe the activation of the M2
channel of influenza virus, for which abundant experimental
data are available. Starting from the closed crystal
structure, simulation reveals a pH-dependent conformational
switch to an activated state that resembles the open
crystal structure. Importantly, simulation affords the free
energy of channel opening coupled to the titration of a
histidine tetrad, thereby providing a thermodynamic
mechanism for M2 activation, that is consistent with NMR
data and resolves the controversy with crystal structures
obtained at different pH values. This work illustrates the
utility of CpHMD in offering previously unattainable
conformational details and thermodynamic information for
proton-coupled transmembrane channels and transporters.},
language = {en},
file = {/Users/jana/Zotero/storage/U39NRT78/Chen_JPhysChemLett_2016_v7_p3961.pdf}
}
@Article{ Contessoto_Leite_2016_J.Chem.TheoryComput.,
title = {{{NTL9 Folding}} at {{Constant pH}}: {{The Importance}} of
{{Electrostatic Interaction}} and {{pH Dependence}}},
shorttitle = {{{NTL9 Folding}} at {{Constant pH}}},
author = {Contessoto, Vin{\'i}cius G. and {de Oliveira},
Vin{\'i}cius M. and {de Carvalho}, Sidney J. and Oliveira,
Leandro C. and Leite, Vitor B. P.},
year = {2016},
month = jul,
journal = {J. Chem. Theory Comput.},
volume = {12},
number = {7},
pages = {3270--3277},
publisher = {{American Chemical Society}},
issn = {1549-9618},
doi = {10.1021/acs.jctc.6b00399},
abstract = {The folding process of the N-terminal domain of ribosomal
protein L9 (NTL9) was investigated at constant-pH computer
simulations. Evaluation of the role of electrostatic
interaction during folding was carried out by including a
Debye\textendash H\"uckel potential into a C{$\alpha$}
structure-based model (SBM). In this study, the charges of
the ionizable residues and the electrostatic potential are
susceptible to the solution conditions, such as pH and
ionic strength, as well as to the presence of charged
groups. Simulations were performed under different pHs, and
the results were validated by comparing them with
experimental values of pKa and with denaturation experiment
data. Also, the free energy profiles, {$\Phi$}-values, and
folding routes were calculated for each condition. It was
shown how charges vary along the folding under different
pH, which is subject to different scenarios. This study
reveals how simplified models can capture essential
physical features, reproducing experimental results, and
presenting the role of electrostatic interactions before,
during, and after the transition state.}
}
@Article{ Cote_Shen_2014_J.Phys.Chem.C,
title = {Mechanism of the {{pH}}-{{Controlled Self}}-{{Assembly}}
of {{Nanofibers}} from {{Peptide Amphiphiles}}},
author = {Cote, Yoann and Fu, Iris W. and Dobson, Eric T. and
Goldberger, Joshua E. and Nguyen, Hung D. and Shen, Jana
K.},
year = {2014},
month = jul,
journal = {J. Phys. Chem. C},
volume = {118},
number = {29},
pages = {16272--16278},
issn = {1932-7447, 1932-7455},
doi = {10.1021/jp5048024},
abstract = {Stimuli-responsive, self-assembling nanomaterials hold a
great promise to revolutionize medicine and technology.
However, current discovery is slow and often serendipitous.
Here we report a multiscale modeling study to elucidate the
pH-controlled self-assembly of nanofibers from the peptide
amphiphiles, palmitoyl-I-A3E4-NH2. The coarse-grained
simulations revealed the formation of random-coil based
spherical micelles at strong electrostatic repulsion.
However, at weak or no electrostatic repulsion, the
micelles merge into a nanofiber driven by the
{$\beta$}-sheet formation between the peptide segments. The
all-atom constant pH molecular dynamics revealed a
cooperative transition between random coil and
{$\beta$}-sheet in the pH range 6-7, matching the CD data.
Interestingly, although the bulk pKa is more than one unit
below the transition pH, consistent with the titration
data, the highest pKa's coincide with the transition pH,
suggesting that the latter may be tuned by modulating the
pKa's of a few solvent-buried Glu side chains. Together,
these data offer, to our best knowledge, the first
multiresolution and quantitative view of the pH-dependent
self-assembly of nanofibers. The novel protocols and
insights gained are expected to advance the computer-aided
design and discovery of pH-responsive nanomaterials.},
language = {en},
file = {/Users/jana/Zotero/storage/9D8ZPK2N/Cote et al. - 2014 -
Mechanism of the pH-Controlled Self-Assembly of Na.pdf}
}
@Article{ Ellis_Shen_2015_J.Am.Chem.Soc.,
title = {{{pH}}-{{Dependent Population Shift Regulates BACE1
Activity}} and {{Inhibition}}},
author = {Ellis, Christopher R. and Shen, Jana},
year = {2015},
month = aug,
journal = {J. Am. Chem. Soc.},
volume = {137},
number = {30},
pages = {9543--9546},
issn = {0002-7863, 1520-5126},
doi = {10.1021/jacs.5b05891},
abstract = {BACE1, a major therapeutic target for treatment of
Alzheimer's disease, functions within a narrow pH range.
Despite tremendous effort and progress in the development
of BACE1 inhibitors, details of the underlying pH-dependent
regulatory mechanism remain unclear. Here we elucidate the
pH-dependent conformational mechanism that regulates BACE1
activity using continuous constant-pH molecular dynamics
(MD). The simulations reveal that BACE1 mainly occupies
three conformational states and that the relative
populations of the states shift according to pH. At
intermediate pH, when the catalytic dyad is monoprotonated,
a binding-competent state is highly populated, while at low
and high pH a Tyr-inhibited state is dominant. Our data
provide strong evidence supporting conformational selection
as a major mechanism for substrate and peptide-inhibitor
binding. These new insights, while consistent with
experiment, greatly extend the knowledge of BACE1 and have
implications for further optimization of inhibitors and
understanding potential side effects of targeting BACE1.
Finally, the work highlights the importance of properly
modeling protonation states in MD simulations.},
language = {en},
file = {/Users/jana/Zotero/storage/P9JD9GK3/Ellis and Shen - 2015
- pH-Dependent Population Shift Regulates BACE1 Acti.pdf}
}
@Article{ Ellis_Shen_2016_J.Phys.Chem.Lett.,
title = {Constant {{pH Molecular Dynamics Reveals pH}}-Modulated
{{Binding}} of {{Two Small}}-{{Molecule BACE1
Inhibitors}}},
author = {Ellis, Christopher R. and Tsai, Cheng-Chieh and Hou,
Xinjun and Shen, Jana},
year = {2016},
month = mar,
journal = {J. Phys. Chem. Lett.},
volume = {7},
number = {6},
pages = {944--949},
issn = {1948-7185},
doi = {10.1021/acs.jpclett.6b00137},
abstract = {Targeting BACE1 with small-molecule inhibitors offers a
promising route for treatment of Alzheimer's disease.
However, the intricate pH dependence of BACE1 function and
inhibitor efficacy has posed major challenges for
structure-based drug design. Here we investigate two,
structurally similar BACE1 inhibitors that have
dramatically different binding affinity and inhibitory
activity using continuous constant pH molecular dynamics
(CpHMD). At high pH, both inhibitors are stably bound to
BACE1, however, within the enzyme active pH range, only the
iminopyrimidinone-based inhibitor remains bound, while the
aminothiazine-based inhibitor becomes partially dissociated
following the loss of hydrogen bonding with the active site
and change of the 10s loop conformation. The drastically
lower affinity of the second inhibitor is due to the
protonation of a catalytic aspartate and the lack of a
propyne tail. This work demonstrates that CpHMD can be used
for screening pH-dependent binding profiles of
small-molecule inhibitors, providing a new tool for
structure-based drug design and optimization.},
pmcid = {PMC5713896},
pmid = {26905811},
file = {/Users/jana/Zotero/storage/XXXMPISY/Ellis et al. - 2016 -
Constant pH Molecular Dynamics Reveals pH-modulate.pdf}
}
@Article{ Ellis_Shen_2017_J.Comput.Chem.,
title = {Conformational Dynamics of Cathepsin {{D}} and Binding to
a Small-Molecule {{BACE1}} Inhibitor},
author = {Ellis, Christopher R. and Tsai, Cheng-Chieh and Lin,
Fang-Yu and Shen, Jana},
year = {2017},
month = jun,
journal = {J. Comput. Chem.},
volume = {38},
number = {15},
pages = {1260--1269},
issn = {01928651},
doi = {10.1002/jcc.24719},
language = {en},
file = {/Users/jana/Zotero/storage/ZKC9PPZU/Ellis et al. - 2017 -
Conformational dynamics of cathepsin D and binding.pdf}
}
@Article{ Grunewald_Marrink_2020_J.Chem.Phys.,
title = {Titratable {{Martini}} Model for Constant {{pH}}
Simulations},
author = {Gr{\"u}newald, Fabian and Souza, Paulo C. T. and
Abdizadeh, Haleh and Barnoud, Jonathan and {de Vries}, Alex
H. and Marrink, Siewert J.},
year = {2020},
month = jul,
journal = {J. Chem. Phys.},
volume = {153},
number = {2},
pages = {024118},
publisher = {{American Institute of Physics}},
issn = {0021-9606},
doi = {10.1063/5.0014258}
}
@Article{ Harris_Shen_2017_J.Phys.Chem.Lett.,
title = {Proton-{{Coupled Conformational Allostery Modulates}} the
{{Inhibitor Selectivity}} for {$\beta$}-{{Secretase}}},
author = {Harris, Robert C. and Tsai, Cheng-Chieh and Ellis,
Christopher R. and Shen, Jana},
year = {2017},
month = oct,
journal = {J. Phys. Chem. Lett.},
volume = {8},
number = {19},
pages = {4832--4837},
issn = {1948-7185},
doi = {10.1021/acs.jpclett.7b02309},
abstract = {Many important pharmaceutical targets, such as aspartyl
proteases and kinases, exhibit pH-dependent dynamics,
functions and inhibition. Accurate prediction of their
binding free energies is challenging because current
computational techniques neglect the effects of pH. Here we
combine free energy perturbation calculations with
continuous constant pH molecular dynamics to explore the
selectivity of a smallmolecule inhibitor for
{$\beta$}-secretase (BACE1), an important drug target for
Alzheimer's disease. The calculations predicted identical
affinity for BACE1 and the closely related cathepsin D at
high pH; however, at pH 4.6 the inhibitor is selective for
BACE1 by 1.3 kcal/mol, in excellent agreement with
experiment. Surprisingly, the pH-dependent selectivity can
be attributed to the protonation of His45, which
allosterically modulates a loop-inhibitor interaction.
Allosteric regulation induced by proton binding is likely
common in biology; considering such allosteric sites could
lead to exciting new opportunities in drug design.},
language = {en},
file = {/Users/jana/Zotero/storage/7TIBA2KV/Harris_JPhysChemLett_2017_v8_p4832.pdf}
}
@Article{ Harris_Shen_2019_J.Chem.Inf.Model.,
ids = {Harris_Shen_2019_J.Chem.Inf.Model._4821a},
title = {{{GPU}}-{{Accelerated Implementation}} of {{Continuous
Constant pH Molecular Dynamics}} in {{Amber}}: {{pKa
Predictions}} with {{Single}}-{{pH Simulations}}},
shorttitle = {{{GPU}}-{{Accelerated Implementation}} of {{Continuous
Constant pH Molecular Dynamics}} in {{Amber}}},
author = {Harris, Robert C. and Shen, Jana},
year = {2019},
month = nov,
journal = {J. Chem. Inf. Model.},
volume = {59},
number = {11},
pages = {4821--4832},
issn = {1549-9596, 1549-960X},
doi = {10.1021/acs.jcim.9b00754},
abstract = {We present a GPU implementation of the continuous constant
pH molecular dynamics (CpHMD) based on the most recent
generalized Born implicit-solvent model in the pmemd engine
of the Amber molecular dynamics package. To test the
accuracy of the tool for rapid pKa predictions, a series of
2 ns single-pH simulations were performed for over 120
titratable residues in 10 benchmark proteins that were
previously used to test the various continuous CpHMD
methods. The calculated pKa's showed a root-mean-square
deviation of 0.80 and correlation coefficient of 0.83 with
respect to experiment. Also, 90\% of the pKa's were
converged with estimated errors below 0.1 pH units.
Surprisingly, this level of accuracy is similar to our
previous replica-exchange simulations with 2 ns per replica
and an exchange attempt frequency of 2 ps-1 (Huang, Harris,
and Shen J. Chem. Inf. Model. 2018, 58, 1372-1383).
Interestingly, for the linked titration sites in two
enzymes, although residuespecific protonation state
sampling in the single-pH simulations was not converged
within 2 ns, the protonation fraction of the linked
residues appeared to be largely converged, and the
experimental macroscopic pKa values were reproduced to
within 1 pH unit. Comparison with replica-exchange
simulations with different exchange attempt frequencies
showed that the splitting between the two macroscopic pKa's
is underestimated with frequent exchange attempts such as 2
ps-1, while single-pH simulations overestimate the
splitting. The same trend is seen for the single-pH vs
replica-exchange simulations of a hydrogenbonded aspartyl
dyad in a much larger protein. A 2 ns single-pH simulation
of a 400-residue protein takes about 1 h on a single NVIDIA
GeForce RTX 2080 graphics card, which is over 1000 times
faster than a CpHMD run on a single CPU core of a
highperformance computing cluster node. Thus, we envision
that GPU-accelerated continuous CpHMD may be used in
routine pKa predictions for a variety of applications, from
assisting MD simulations with protonation state assignment
to offering pHdependent corrections of binding free
energies and identifying reactive hot spots for covalent
drug design.},
language = {en},
file = {/Users/jana/Zotero/storage/JWHAPB6X/Harris and Shen - 2019
- GPU-Accelerated Implementation of Continuous
Const.pdf;/Users/jana/Zotero/storage/PXSUHGBI/Harris and
Shen - 2019 - GPU-Accelerated Implementation of Continuous
Const.pdf}
}
@Article{ Harris_Shen_2020_J.Chem.TheoryComput.,
title = {Predicting {{Reactive Cysteines}} with
{{Implicit}}-{{Solvent}}-{{Based Continuous Constant pH
Molecular Dynamics}} in {{Amber}}},
author = {Harris, Robert C. and Liu, Ruibin and Shen, Jana},
year = {2020},
month = jun,
journal = {J. Chem. Theory Comput.},
volume = {16},
number = {6},
pages = {3689--3698},
issn = {1549-9618, 1549-9626},
doi = {10.1021/acs.jctc.0c00258},
abstract = {Cysteines existing in the deprotonated thiolate form or
having a tendency to become deprotonated are important
players in enzymatic and cellular redox functions and
frequently exploited in covalent drug design; however, most
computational studies assume cysteines as protonated. Thus,
developing an efficient tool that can make accurate and
reliable predictions of cysteine protonation states is
timely needed. We recently implemented a generalized Born
(GB) based continuous constant pH molecular dynamics
(CpHMD) method in Amber for protein pKa calculations on
CPUs and GPUs. Here we benchmark the performance of
GB-CpHMD for predictions of cysteine pKa's and reactivities
using a data set of 24 proteins with both down- and
upshifted cysteine pKa's. We found that 10 ns single-pH or
4 ns replica-exchange CpHMD titrations gave
root-mean-square errors of 1.2-1.3 and correlation
coefficients of 0.8-0.9 with respect to experiment. The
accuracy of predicting thiolates or reactive cysteines at
physiological pH with single-pH titrations is 86 or 81\%
with a precision of 100 or 90\%, respectively. This
performance well surpasses the traditional structure-based
methods, particularly a widely used empirical pKa tool that
gives an accuracy less than 50\%. We discuss simulation
convergence, dependence on starting structures, common
determinants of the pKa downshifts and upshifts, and the
origin of the discrepancies from the structure-based
calculations. Our work suggests that CpHMD titrations can
be performed on a desktop computer equipped with a single
GPU card to predict cysteine protonation states for a
variety of applications, from understanding biological
functions to covalent drug design.},
language = {en},
file = {/Users/jana/Zotero/storage/MWFT99NR/ct0c00258_si_001.pdf;/Users/jana/Zotero/storage/SWVHRGW6/Harris
et al. - 2020 - Predicting Reactive Cysteines with
Implicit-Solven.pdf}
}
@Article{ Henderson_Shen_2018_J.Phys.Chem.Lett.,
title = {How {{Ligand Protonation State Controls Water}} in
{{Protein}}\textendash{{Ligand Binding}}},
author = {Henderson, Jack A. and Harris, Robert C. and Tsai,
Cheng-Chieh and Shen, Jana},
year = {2018},
month = sep,
journal = {J. Phys. Chem. Lett.},
volume = {9},
number = {18},
pages = {5440--5444},
issn = {1948-7185},
doi = {10.1021/acs.jpclett.8b02440},
abstract = {The role of water in protein-ligand binding has been an
intensely studied topic in recent years; however, how
ligand protonation state change perturbs water has not been
considered. Here we show that water dynamics and
interactions can be controlled by the protonation state of
ligand using continuous constant pH molecular dynamics
simulations of two closely related model systems,
{$\beta$}-secretase 1 and 2 (BACE1 and BACE2), in complex
with a small-molecule inhibitor. Simulations revealed that,
upon binding, the inhibitor pyrimidine ring remains
deprotonated in BACE1 but becomes protonated in BACE2.
Pyrimidine protonation results in water displacement,
rigidification of the binding pocket, and shift in the
ligand binding mode from water-mediated to direct hydrogen
bonding. These findings not only support but also
rationalize the most recent structure-selectivity data in
BACE1 drug design. Binding-induced protonation state
changes are likely common; our work offers a glimpse at how
modeling protein-ligand binding while allowing ligand
titration can further advance the understanding of water
and structure-based drug design.},
language = {en},
file = {/Users/jana/Zotero/storage/2A2DLC9J/Henderson et al. -
2018 - How Ligand Protonation State Controls Water in
Pro.pdf}
}
@Article{ Henderson_Shen_2020_J.Chem.Phys.,
title = {Assessment of Proton-Coupled Conformational Dynamics of
{{SARS}} and {{MERS}} Coronavirus Papain-like Proteases:
{{Implication}} for Designing Broad-Spectrum Antiviral
Inhibitors},
shorttitle = {Assessment of Proton-Coupled Conformational Dynamics of
{{SARS}} and {{MERS}} Coronavirus Papain-like Proteases},
author = {Henderson, Jack A. and Verma, Neha and Harris, Robert C.
and Liu, Ruibin and Shen, Jana},
year = {2020},
month = sep,
journal = {J. Chem. Phys.},
volume = {153},
number = {11},
pages = {115101},
issn = {0021-9606, 1089-7690},
doi = {10.1063/5.0020458},
abstract = {Broad-spectrum antiviral drugs are urgently needed to stop
the Coronavirus Disease 2019 pandemic and prevent future
ones. The novel severe acute respiratory syndrome
coronavirus 2 (SARS-CoV-2) is related to the SARS-CoV and
Middle East respiratory syndrome coronavirus (MERS-CoV),
which have caused the previous outbreaks. The papain-like
protease (PLpro) is an attractive drug target due to its
essential roles in the viral life cycle. As a cysteine
protease, PLpro is rich in cysteines and histidines, and
their protonation/deprotonation modulates catalysis and
conformational plasticity. Here, we report the pKa
calculations and assessment of the proton-coupled
conformational dynamics of SARS-CoV-2 in comparison to
SARS-CoV and MERS-CoV PLpros using the recently developed
graphical processing unit (GPU)-accelerated
implicit-solvent continuous constant pH molecular dynamics
method with a new asynchronous replica-exchange scheme,
which allows computation on a single GPU card. The
calculated pKa's support the catalytic roles of the
Cys\textendash His\textendash Asp triad. We also found that
several residues can switch protonation states at
physiological pH among which is C270/271 located on the
flexible blocking loop 2 (BL2) of SARS-CoV-2/CoV PLpro.
Simulations revealed that the BL2 can open and close
depending on the protonation state of C271/270, consistent
with the most recent crystal structure evidence.
Interestingly, despite the lack of an analogous cysteine,
BL2 in MERS-CoV PLpro is also very flexible, challenging a
current hypothesis. These findings are supported by the
all-atom fixed-charge simulations and provide a starting
point for more detailed studies to assist the
structure-based design of broad-spectrum inhibitors against
CoV PLpros.},
language = {en},
file = {/Users/jana/Zotero/storage/5D6CJSKP/Henderson et al. -
2020 - Assessment of proton-coupled conformational
dynami.pdf}
}
@Article{ Henderson_Shen_2020_Proc.Natl.Acad.Sci.USA,
title = {Alternative Proton-Binding Site and Long-Distance Coupling
in {{{\emph{Escherichia}}}}{\emph{ Coli}} Sodium\textendash
Proton Antiporter {{NhaA}}},
author = {Henderson, Jack A. and Huang, Yandong and Beckstein,
Oliver and Shen, Jana},
year = {2020},
month = oct,
journal = {Proc. Natl. Acad. Sci. USA},
volume = {117},
number = {41},
pages = {25517--25522},
issn = {0027-8424, 1091-6490},
doi = {10.1073/pnas.2005467117},
abstract = {Escherichia coli NhaA is a prototypical sodium\textendash
proton antiporter responsible for maintaining cellular ion
and volume homeostasis by exchanging two protons for one
sodium ion; despite two decades of research, the transport
mechanism of NhaA remains poorly understood. Recent crystal
structure and computational studies suggested Lys300 as a
second proton-binding site; however, functional
measurements of several K300 mutants demonstrated
electrogenic transport, thereby casting doubt on the role
of Lys300. To address the controversy, we carried out
state-of-the-art continuous constant pH molecular dynamics
simulations of NhaA mutants K300A, K300R, K300Q/D163N, and
K300Q/D163N/D133A. Simulations suggested that K300 mutants
maintain the electrogenic transport by utilizing an
alternative proton-binding residue Asp133. Surprisingly,
while Asp133 is solely responsible for binding the second
proton in K300R, Asp133 and Asp163 jointly bind the second
proton in K300A, and Asp133 and Asp164 jointly bind two
protons in K300Q/D163N. Intriguingly, the coupling between
Asp133 and Asp163 or Asp164 is enabled through the
proton-coupled hydrogen-bonding network at the flexible
intersection of two disrupted helices. These data resolve
the controversy and highlight the intricacy of the
compensatory transport mechanism of NhaA mutants.
Alternative proton-binding site and proton sharing between
distant aspartates may represent important general
mechanisms of proton-coupled transport in secondary active
transporters.},
language = {en},
file = {/Users/jana/Zotero/storage/Q3SMDBLT/Henderson et al. -
2020 - Alternative proton-binding site and long-distance
.pdf}
}
@Article{ Huang_Shen_2016_J.Chem.TheoryComput.,
title = {All-{{Atom Continuous Constant pH Molecular Dynamics With
Particle Mesh Ewald}} and {{Titratable Water}}},
author = {Huang, Yandong and Chen, Wei and Wallace, Jason A. and
Shen, Jana},
year = {2016},
month = nov,
journal = {J. Chem. Theory Comput.},
volume = {12},
number = {11},
pages = {5411--5421},
issn = {1549-9618, 1549-9626},
doi = {10.1021/acs.jctc.6b00552},
abstract = {Development of a pH stat to properly control solution pH
in biomolecular simulations has been a longstanding goal in
the community. Toward this goal recent years have witnessed
the emergence of the so-called constant pH molecular
dynamics methods. However, the accuracy and generality of
these methods have been hampered by the use of
implicit-solvent models or truncation-based electrostatic
schemes. Here we report the implementation of the particle
mesh Ewald (PME) scheme into the all-atom continuous
constant pH molecular dynamics (CpHMD) method, enabling
CpHMD to be performed with a standard MD engine at a
fractional added computational cost. We demonstrate the
performance using pH replica-exchange CpHMD simulations
with titratable water for a stringent test set of proteins,
HP36, BBL, HEWL, and SNase. With the sampling time of 10 ns
per replica, most pKa's are converged, yielding the average
absolute and root-mean-square deviations of 0.61 and 0.77,
respectively, from experiment. Linear regression of the
calculated vs experimental pKa shifts gives a correlation
coefficient of 0.79, a slope of 1, and an intercept near 0.
Analysis reveals inadequate sampling of structure
relaxation accompanying a protonation-state switch as a
major source of the remaining errors, which are reduced as
simulation prolongs. These data suggest PME-based CpHMD can
be used as a general tool for pH-controlled simulations of
macromolecular systems in various environments, enabling
atomic insights into pH-dependent phenomena involving not
only soluble proteins but also transmembrane proteins,
nucleic acids, surfactants, and polysaccharides.},
language = {en},
file = {/Users/jana/Zotero/storage/IWZGSBHY/Huang_JChemTheoryComput_2016_v12_p5411.pdf}
}
@Article{ Huang_Shen_2016_Nat.Commun.,
title = {Mechanism of {{pH}}-Dependent Activation of the
Sodium-Proton Antiporter {{NhaA}}},
author = {Huang, Yandong and Chen, Wei and Dotson, David L. and
Beckstein, Oliver and Shen, Jana},
year = {2016},
month = dec,
journal = {Nat. Commun.},
volume = {7},
number = {1},
pages = {12940},
issn = {2041-1723},
doi = {10.1038/ncomms12940},
language = {en},
file = {/Users/jana/Zotero/storage/AV2LHZJQ/Huang et al. - 2016 -
Mechanism of pH-dependent activation of the sodium.pdf}
}
@Article{ Huang_Shen_2018_J.Chem.Inf.Model.,
title = {Generalized {{Born Based Continuous Constant pH Molecular
Dynamics}} in {{Amber}}: {{Implementation}},
{{Benchmarking}} and {{Analysis}}},
shorttitle = {Generalized {{Born Based Continuous Constant pH Molecular
Dynamics}} in {{Amber}}},
author = {Huang, Yandong and Harris, Robert C. and Shen, Jana},
year = {2018},
month = jul,
journal = {J. Chem. Inf. Model.},
volume = {58},
number = {7},
pages = {1372--1383},
issn = {1549-9596, 1549-960X},
doi = {10.1021/acs.jcim.8b00227},
abstract = {Solution pH plays an important role in structure and
dynamics of biomolecular systems; however, pH effects
cannot be accurately accounted for in conventional
molecular dynamics simulations based on fixed protonation
states. Continuous constant pH molecular dynamics (CpHMD)
based on the {$\lambda$}-dynamics framework calculates
protonation states on the fly during dynamical simulation
at a specified pH condition. Here we report the CPU-based
implementation of the CpHMD method based on the GBNeck2
generalized Born (GB) implicit-solvent model in the pmemd
engine of the Amber molecular dynamics package. The
performance of the method was tested using pH
replicaexchange titration simulations of Asp, Glu and His
side chains in 4 miniproteins and 7 enzymes with
experimentally known pKa's, some of which are significantly
shifted from the model values. The added computational cost
due to CpHMD titration ranges from 11 to 33\% for the data
set and scales roughly linearly as the ratio between the
titrable sites and number of solute atoms. Comparison of
the experimental and calculated pKa's using 2 ns per
replica sampling yielded a mean unsigned error of 0.70, a
root-mean-squared error of 0.91, and a linear correlation
coefficient of 0.79. Though this level of accuracy is
similar to the GBSW-based CpHMD in CHARMM, in contrast to
the latter, the current implementation was able to
reproduce the experimental orders of the pKa's of the
coupled carboxylic dyads. We quantified the sampling
errors, which revealed that prolonged simulation is needed
to converge pKa's of several titratable groups involved in
salt-bridge-like interactions or deeply buried in the
protein interior. Our benchmark data demonstrate that
GBNeck2-CpHMD is an attractive tool for protein pKa
predictions.},
language = {en},
file = {/Users/jana/Zotero/storage/IH5RELFA/Huang_JChemInfModel_2018_v58_p1372.pdf}
}
@Article{ Huang_Shen_2018_J.Phys.Chem.Lett.,
title = {Predicting {{Catalytic Proton Donors}} and
{{Nucleophiles}} in {{Enzymes}}: {{How Adding Dynamics
Helps Elucidate}} the {{Structure}}-{{Function
Relationships}}},
author = {Huang, Yandong and Yue, Zhi and Tsai, Cheng-Chieh and
Henderson, Jack A and Shen, Jana},
year = {2018},
journal = {J. Phys. Chem. Lett.},
volume = {9},
pages = {1179--1184},
abstract = {Despite the relevance of understanding structure-function
relationships, robust prediction of proton donors and
nucleophiles in enzyme active sites remains challenging.
Here we tested three types of state-of-the-art
computational methods to calculate the pKa's of the buried
and hydrogen bonded catalytic dyads in five enzymes. We
asked the question what determines the pKa order, i.e.,
what makes a residue proton donor vs a nucleophile. The
continuous constant pH molecular dynamics simulations
captured the experimental pKa orders and revealed that the
negative nucleophile is stabilized by increased hydrogen
bonding and solvent exposure as compared to the proton
donor. Surprisingly, this simple trend is not apparent from
crystal structures and the static structure-based
calculations. While the generality of the findings awaits
further testing via a larger set of data, they underscore
the role of dynamics in bridging enzyme structures and
functions.},
language = {en},
file = {/Users/jana/Zotero/storage/G4IG6ENJ/Huang_JPhysChemLett_2018_v9_p1179.pdf},
doi = {10.1021/acs.jpclett.8b00238}
}
@InCollection{ Huang_Shen_2021_MethodsinMolecularBiology,
title = {Continuous Constant {{pH Molecular Dynamics Simulations}}
of {{Transmembrane Proteins}}},
booktitle = {Methods in {{Molecular Biology}}},
author = {Huang, Yandong and Henderson, Jack A. and Shen, Jana},
year = {2021},
series = {Structure and {{Function}} of {{Membrane Proteins}}},
volume = {2302},
pages = {275--287},
publisher = {{Springer}},
address = {{New York}},
doi = {10.1101/2020.08.06.239772},
abstract = {Many membrane channels, transporters, and receptors
utilize a pH gradient or proton coupling to drive
functionally relevant conformational transitions.
Conventional molecular dynamics simulations employ fixed
protonation states, thus neglecting the coupling between
protonation and conformational equilibria. Here we describe
the membraneenabled hybrid-solvent continuous constant pH
molecular dynamics method for capturing atomic details of
proton-coupled conformational dynamics of transmembrane
proteins. Example protocols from our recent application
studies of proton channels and ion/substrate transporters
are discussed.},
language = {en},
file = {/Users/jana/Zotero/storage/6JASEFBS/Huang et al. - 2020 -
Continuous constant pH Molecular Dynamics Simulati.pdf},
doi = {10.1007/978-1-0716-1394-8_15}
}
@Article{ Khandogin_Brooks_2005_Biophys.J.,
title = {Constant {{pH Molecular Dynamics}} with {{Proton Tautomerism}}},
author = {Khandogin, Jana and Brooks, III, Charles L.},