Literature DB >> 24803851

Weighted Implementation of Suboptimal Paths (WISP): An Optimized Algorithm and Tool for Dynamical Network Analysis.

Adam T Van Wart1, Jacob Durrant1, Lane Votapka1, Rommie E Amaro1.   

Abstract

Allostery can occur by way of subtle cooperation among protein residues (e.g., amino acids) even in the absence of large conformational shifts. Dynamical network analysis has been used to model this cooperation, helping to computationally explain how binding to an allosteric site can impact the behavior of a primary site many ångstroms away. Traditionally, computational efforts have focused on the most optimal path of correlated motions leading from the allosteric to the primary active site. We present a program called Weighted Implementation of Suboptimal Paths (WISP) capable of rapidly identifying additional suboptimal pathways that may also play important roles in the transmission of allosteric signals. Aside from providing signal redundancy, suboptimal paths traverse residues that, if disrupted through pharmacological or mutational means, could modulate the allosteric regulation of important drug targets. To demonstrate the utility of our program, we present a case study describing the allostery of HisH-HisF, an amidotransferase from T. maritima thermotiga. WISP and its VMD-based graphical user interface (GUI) can be downloaded from http://nbcr.ucsd.edu/wisp.

Entities:  

Year:  2014        PMID: 24803851      PMCID: PMC3958135          DOI: 10.1021/ct4008603

Source DB:  PubMed          Journal:  J Chem Theory Comput        ISSN: 1549-9618            Impact factor:   6.006


Introduction

Allosteric regulation is a key mechanism whereby proteins respond to environmental stimuli that modulate their activity.[1−5] Classic models of allostery (e.g., the MWC[6] and KNF[7] models) suggest that a binding event at an allosteric site induces substantial conformational changes in the primary catalytic site. However, allostery has since been observed in the absence of large-scale conformational changes,[8,9] suggesting that subtle alterations in protein dynamics can induce a population shift in the conformational ensemble without substantially changing the mean conformation of the protein. This subtle form of allosteric communication can be modeled by dynamical network analysis. Recent advances in both correlated-residue clustering and dynamical network analysis have helped computationally quantify allosteric states.[10−19] Dynamical network models of allostery often focus on the single most direct path of residues leading from the allosteric to the primary active site. However, few researchers have considered the state changes of slightly longer (suboptimal) allosteric pathways. The statistical distribution of these additional pathways may be useful for locating accessible residues that, if disrupted via pharmacological or mutational means, could modulate the allosteric regulation of important drug targets. In this paper, we introduce Weighted Implementation of Suboptimal Paths (WISP), a tool that compliments current dynamical network models of allostery by rapidly calculating the primary communicating path between two residues as well as the slightly longer suboptimal paths. We illustrate the utility of the WISP method using the biological system HisH-HisF, a well-characterized glutamine amidotransferase enzyme.[20] To facilitate the broader adoption of this method, we have also created a WISP plugin for the popular Visual Molecular Dynamics (VMD) package.[21] WISP has been specifically tested on several operating systems, using several versions of Python, NumPy, SciPy, and NetworkX (Table 1).[22−27] The program is open source and can be downloaded from http://nbcr.ucsd.edu/wisp.
Table 1

WISP Operating Specificationsa

operating systemPythonNumPySciPyNetworkX
Scientific Linux 6.42.61.70.9.01.7
Mac OSX 10.62.7.21.6.10.9.01.8.1
Ubuntu 12.042.7.51.7.10.12.01.8.1
Windows XP2.7.31.7.0rc10.11.01.8.1

WISP has been tested on a number of operating systems, using various versions of NumPy, SciPy, and NetworkX. We note that installation of necessary packages under Windows was difficult; however, the command-line version of the program was successfully executed after installing the appropriate dependencies using the ActivePython software package.

WISP has been tested on a number of operating systems, using various versions of NumPy, SciPy, and NetworkX. We note that installation of necessary packages under Windows was difficult; however, the command-line version of the program was successfully executed after installing the appropriate dependencies using the ActivePython software package.

Materials and Methods

Molecular-Dynamics Trajectory Input

As input, WISP accepts an aligned molecular dynamics trajectory in the common multiframe PDB format.[28] Trajectory postprocessing is necessary prior to WISP analysis, as most trajectories are not initially aligned or PDB formatted. The freely available Visual Molecular Dynamics (VMD) software package can be used to perform the necessary alignment and conversion.

Generating the Correlation Matrix

WISP, similar to other dynamical network analysis tools,[29] is based on the dynamic interdependence among protein constituents (e.g., amino acids). A protein system is first simplified by representing each constituent as a single node. For example, depending on user-specified WISP parameters, an amino acid can be represented by a node positioned at the residue center of mass, the side-chain center of mass, the backbone center of mass, or the α carbon. As a default, the residue center of mass is used. The interdependence among nodes is represented as a connecting edge with an associated numeric value that reflects its strength. There are numerous methods for describing the interdependence among nodes in a protein network. Typically, this interdependence is represented by a matrix C with values corresponding to the weights of each edge. By default, WISP generates an N2 matrix C by calculating the correlated motion among node–node pairs as shown in eqs 1 and 2:where N is the number of nodes, i and j are indices corresponding to individual nodes, r(t) is the location of node i at time t, and C is the matrix element at position (i, j). The absolute value of C is larger when the motions of two nodes are highly correlated or anticorrelated. In order to compute signaling pathways, it is useful to construct a matrix where the opposite is true, i.e., where small values indicate highly correlated or anticorrelated motions. Consequently, the correlation matrix is functionalized according to eq 3, as outlined in previous works.[12,13] As a point of clarification, each w can be thought of as a “distance” in functionalized correlation space. Throughout the remainder of this paper, concepts like length and distance will refer to spans in this space, unless specifically described as “Cartesian” or “physical.” We further note that, while WISP’s default functionalized correlation matrix is generally useful, any user-specified matrix that defines signaling strength as inversely proportional to edge length can be used.

Reducing the Complexity of the Functionalized Correlation Matrix

In order to improve the speed of subsequent path-finding steps, the complexity of the functionalized correlation matrix W must be reduced. To this end, two techniques are used. First, a contact-map matrix Mcontact is used to separate entries in W that represent pairs of physically distant residues from those that represent adjacent residues. By default, Mcontact is constructed using pcutoff, a user-specified Cartesian cutoff distance that represents physical proximity. The average location of each atom over the course of the aligned molecular dynamics trajectory is first calculated, followed by a pairwise Cartesian distance comparison. Two nodes are considered to be in physical contact if the average locations of any of their associated residue atoms come within pcutoff of one another. Mcontact entries are set to zero for all node–node pairs that are not in physical contact. A simplified, functionalized correlation matrix Wsimp is then constructed by multiplying W and Mcontact element-wise. The entries of Wsimp that equal zero represent node–node interactions that are subsequently ignored. Alternatively, users can provide their own Mcontact if desired. Second, to further reduce the complexity of the functionalized correlation matrix W, a pruning algorithm identifies nodes that only participate in pathways having lengths in network space that are greater than another cutoff (dcutoff). As the ultimate goal is to identify suboptimal paths with lengths less than dcutoff, these nodes can be effectively discarded as well. To identify these nodes, we first generate the set of all forced-node paths (FNPs). An FNP is the optimal pathway between two user specified nodes n and n that is forced to pass through a given third node n. For any two fixed nodes n and n, each third node n is associated with a single FNP. The set of all FNPs can therefore be generated by iterating over all the nodes, n, of the system. To calculate an FNP, Dijkstra’s algorithm, included in NetworkX,[22] is first used to identify the optimal paths between n → n and n → n, respectively. The FNP has a length equal to the sum of these two constituent paths. Any path between n and n that passes through n must have a length equal to or greater than that of the associated FNP. Consequently, if the length of the FNP is greater than dcutoff, all entries in Wsimp associated with n are set to zero, so that n is effectively ignored.

Calculating Suboptimal Pathways

Having generated Wsimp, we are now ready to search for both the single optimal and multiple suboptimal paths between n and n. The optimal path is fairly easy to identify using Dijkstra’s algorithm, mentioned above. In contrast, identifying all suboptimal paths is difficult because the number of possible pathways between n and n grows rapidly as the total number of nodes increases. To identify suboptimal paths, a recursive, bidirectional approach is employed. Simultaneous searches start from n and n (Figure 1, in blue and red, respectively) and recursively traverse the nodes of the dynamical network. The recursive algorithm ignores the connections/correlations between nodes that are physically distant (Figure 1, gray lines). Additionally, nodes eliminated using the FNP technique described above are likewise ignored (Figure 1, gray circles), resulting in substantial speedups. As soon as any of the lengthening paths grows longer than dcutoff, that branch of the recursion is killed (Figure 1, red “X”).
Figure 1

A schematic for path identification. Simultaneous searches start from n and n (blue and red, respectively) and recursively traverse the nodes of the dynamical network. Connections/correlations between nodes that are physically distant are ignored (gray lines). Nodes eliminated using the FNP technique are also ignored (gray circles). As soon as any of the lengthening paths grows too long, that branch of the recursion is killed (red “X”). At each recursive step, all branches originating from n and n are compared for common nodes (asterisk). If a common node exists, the two paths are joined. If the length of this composite path is sufficiently short, a suboptimal path has been identified.

A schematic for path identification. Simultaneous searches start from n and n (blue and red, respectively) and recursively traverse the nodes of the dynamical network. Connections/correlations between nodes that are physically distant are ignored (gray lines). Nodes eliminated using the FNP technique are also ignored (gray circles). As soon as any of the lengthening paths grows too long, that branch of the recursion is killed (red “X”). At each recursive step, all branches originating from n and n are compared for common nodes (asterisk). If a common node exists, the two paths are joined. If the length of this composite path is sufficiently short, a suboptimal path has been identified. At each recursive step, all branches originating from n and n are compared for common nodes (Figure 1, the node marked with an asterisk). If a common node exists, the two paths are joined at this node. If the length of this composite path is less than dcutoff, a suboptimal path has been identified. As WISP has been developed to take advantage of multiple processors, running the program on a multicore system can lead to further speedups beyond the software optimizations described above.

Program Output

The program output is a directory containing multiple files, including the specific W and Mcontact matrices used. The primary output file is a Tcl script that, when loaded into VMD, draws three-dimensional splines representative of the optimal and suboptimal paths. User defined parameters control the relationship between spline thickness, color, opacity, and path length. Useful information is also given as comments in the Tcl file, including path lengths and participating protein residues.

Graphical User Interface

In addition to the command-line program, we have also developed a Visual Molecular Dynamics[21] (VMD) plugin and Tcl-based GUI for easy preparation and visualization of WISP results. The plugin can be accessed through the VMD “Extensions” menu. The main window of the WISP GUI (Figure 2) allows the user to specify the molecular trajectory as well as the allosteric-signal source and sink residues. Several additional window interfaces allow the user to modify more advanced program options if needed. All options available through the WISP command-line interface are available to users of the GUI.
Figure 2

WISP Graphical User Interface (GUI). In this demonstration, the GUI is used to visualize the allosteric pathways between Leu50:HisF and Glu180:HisH. In the main window (top left), the user selects the relevant molecule and which residues to use as the source and sink. The user may also select to load the visualization into VMD upon job completion. The setting option windows (left and bottom right) allow the user to specify additional WISP arguments.

WISP Graphical User Interface (GUI). In this demonstration, the GUI is used to visualize the allosteric pathways between Leu50:HisF and Glu180:HisH. In the main window (top left), the user selects the relevant molecule and which residues to use as the source and sink. The user may also select to load the visualization into VMD upon job completion. The setting option windows (left and bottom right) allow the user to specify additional WISP arguments. Once satisfied with the run specifications, the user may click the “Run WISP” button at the bottom of the WISP main window to execute the job. The plugin loads the visualization of the allosteric pathways into the main VMD window, where the appearance can be further modified according to the user’s preferences.

HisH-HisF Details

The molecular dynamics simulations of HisH-HisF used in the current study have been described previously.[13] In brief, a model of the HisHHisF apo dimer was prepared from the 1GPW[30] crystal structure (Thermotoga maritima). To generate the corresponding holo structure, the 1OX5[31] crystal structure (Saccharomyces cerevisiae), which contains a cocrystallized PRFAR allosteric effector molecule, was aligned to the apo model, effectively positioning PRFAR within the 1GPW:HisF allosteric site. The aligned 1OX5 PRFAR was then merged with the 1GPW-based apo model to yield the corresponding holo structure. Following solvation with TIP3P water molecules and 1 ns of harmonic constrained equilibration, 20 ns of production dynamics with a 2 fs time step were run for both the apo and holo systems using NAMD,[32] the CHARMM27 force field,[33] and the same PRFAR parametrization used previously.[34]

Results/Discussion

Allosteric regulation is crucial to many biological processes. Consequently, one natural strategy for rational drug design is to impede or agonize protein function via allosteric modulation. Classic views of allostery suggest that the binding of an effector molecule at an allosteric site induces large conformational shifts that alter the activity of the primary site. However, as allostery is not necessarily limited to large shifts, this reasoning does not explain some examples of regulation at a distance. For instance, Tsai et al.[9] recently showed that significant backbone deformations are not required for an allosteric effect; rather, in the absence of large conformational changes, subtle shifts in local dynamics driven by entropic effects[8] govern certain types of allostery. Quasi-harmonic analysis (e.g., like that used by software packages such as CARMA[35,36] to calculate entropy) is commonly used to build dynamical network models that quantify signaling pathways among protein constituents. Optimal and suboptimal pathways are calculated that connect protein constituents believed to be important for allostery (i.e., “sources” and “sinks”). An optimal pathway is the shortest distance traversed between source and sink along weighted edges (e.g., as determined by correlated motions), and suboptimal pathways are those closest in length to, but not including, the optimal path. Existing tools can compute optimal and suboptimal pathways between residues;[37] however, these programs lack the speed required to compute more than 50 suboptimal pathways within a reasonable amount of time (several hours or days). As statistics related to suboptimal pathways may provide important insights that cannot be gleaned from the single optimal pathway, faster algorithmic advances must be made. WISP is designed to facilitate the calculation of hundreds of suboptimal pathways in minutes, thereby permitting fast and robust statistical analysis of biological systems modeled as dynamical networks. For example, using a modern workstation with 24 cores, we recently used a 20 000-frame trajectory to identify 750 pathways. WISP loaded and analyzed the trajectory, generated the functionalized correlation matrix, and identified the 750 pathways in 21 min and 52 s. When the calculation was repeated using a copy of the functionalized correlation matrix saved from the first run, the 750 pathways were identified in only 5 min and 44 s. To demonstrate the utility of the WISP algorithm, we used it to study HisH-HisF, a multidomain globular protein known to exhibit allostery. The activity of HisH-HisF, which regulates the fifth step of the histidine biosynthetic pathway in plants, fungi, and microbes, is substantially altered by the allosteric effector N1-[(5′-phosphoribulosyl)-formimino]-5-aminoimidazole-4-carboxamide ribonucleotide (PRFAR).[20] Guided by previous work,[13] we investigated the suboptimal pathways between residues Leu50:HisF and Glu180:HisH using 20 ns molecular dynamics simulations of both apo and holo HisH-HisF. A total of 700 pathways (Figure 3) between Leu50:HisF and Glu180:HisH were calculated using WISP’s default correlation (eqs 1–3) and contact-map matrices, described in the Materials and Methods. Had only the two optimal pathways (apo vs holo) been considered, we would have concluded that communication between the allosteric and primary site is fundamentally different in the presence and absence of the PRFAR effector molecule (Figures 3 and 4). The optimal pathway between Leu50:HisF and Glu180:HisH in the apo state was LEU50:HisFPHE49:HisFPHE77:HisFPRO76:HisFLYS181:HisHGLU180:HisH. In contrast, the optimal pathway with PRFAR bound was LEU50:HisFGLY80:HisFVAL79:HisFLYS99:HisFASP98:HisFLYS181:HisHGLU180:HisH.
Figure 3

WISP-generated signaling pathways. The 700 shortest paths between Leu50:HisF and Glu180:HisH, shown as red splines, derived from (A) the apo trajectory and (B) the holo trajectory. WISP allows the user to choose between a number of graphical settings to better visualize signaling among nodes.

Figure 4

Statistical distribution of signaling pathways. A histogram of the 700 path lengths associated with the apo and holo trajectories is shown. The optimal paths are denoted “Shortest Path.” The path distribution is largely shifted to the left for the holo (allosteric) state. This shift likely results from a more coherent signal in the holo simulation, indicating a possible decrease in the entropy along the pathways due to PRFAR binding.

WISP-generated signaling pathways. The 700 shortest paths between Leu50:HisF and Glu180:HisH, shown as red splines, derived from (A) the apo trajectory and (B) the holo trajectory. WISP allows the user to choose between a number of graphical settings to better visualize signaling among nodes. Statistical distribution of signaling pathways. A histogram of the 700 path lengths associated with the apo and holo trajectories is shown. The optimal paths are denoted “Shortest Path.” The path distribution is largely shifted to the left for the holo (allosteric) state. This shift likely results from a more coherent signal in the holo simulation, indicating a possible decrease in the entropy along the pathways due to PRFAR binding. However, when we considered multiple suboptimal paths, it became apparent that allosteric signaling may be far more intricate. The optimal path in the apo simulation is the shortest suboptimal path in the holo simulation (top 0.3%), and the optimal path in the holo simulation is the 13th shortest suboptimal path in the apo simulation (top 2.0%). In light of this multipathway analysis, the idea that PRFAR binding fundamentally alters a solitary line of communication between the allosteric and primary site becomes less tenable. Rather, the binding of the effector molecule likely has small effects on multiple pathways, both optimal and suboptimal, that when taken together yield a substantial allosteric effect. We subsequently sought to characterize the strength of this allosteric effect. The lengths of the two optimal pathways of the two systems did not differ substantially (apo, 2.97; holo, 2.84). Consequently, had only these two pathways been considered, some might have mistakenly concluded that the allosteric consequences of PRFAR binding are minor. In contrast, when hundreds of suboptimal paths were also considered, a large PRFAR-dependent shift in communication between the allosteric and primary site became apparent. To demonstrate this shift, we generated a histogram of all path lengths for both the holo and apo simulations (Figure 4). The distribution derived from the holo trajectory is substantially skewed toward shorter path lengths, suggesting that the motions of the residues connecting the allosteric and primary sites are more tightly correlated when PRFAR is bound. An overall “dynamical tightening” and loss of entropy along the pathways may therefore explain the allosteric signal. To identify protein residues critical for allosteric transmission, we counted the number of times each residue appeared in any of the 700 paths associated with the apo and holo trajectories, respectively (i.e., the degeneracy of each node, Figure 5). Notably, a number of residues had large effector-molecule-dependent shifts in degeneracy, i.e., HisF: LEU47 (shifts down), VAL69 (shifts up), ALA70 (shifts up), ILE73 (shifts up), ASP74 (shifts up), PRO76 (shifts down), and ALA97 (shifts down) and HisH: LYS181 (slight shift down) (Table 2). Importantly, these residues, which may be crucial for the regulation of protein activity, did not all appear in the optimal apo and holo paths and so would not have been identified had the suboptimal paths been ignored. Previous studies in evolutionary conservation have shown that HisF: LEU47, VAL69, ALA70, and ILE73 are partially or strongly conserved and HisF: PRO76 and ALA97 and HisH: LYS181 are strictly conserved across the entire glutamine amidotransferase family of enzymes.[38] HisF: ASP74 is not conserved, but this amino acid is still predicted to play a role in allostery.[38] Compounds that target (i.e., selectively bind) these critical residues may serve as useful precursors to future allosteric-modulating small molecules.
Figure 5

Node degeneracy in signaling pathways. The total number of times a given residue participates in any of the 700 paths (i.e., node degeneracy) is shown for (A) HisF and (B) HisH. Green indicates the holo state, blue indicates the apo state, and cyan indicates an overlap. Note that Leu50:HisF and Glu180:HisH are present in all 700 paths.

Table 2

Node Degeneracya

A numerical representation of the same data from Figure 5. The comparison between the apo and holo states suggests that certain residues are more sensitive to the allosteric effector PRFAR than others (shaded columns).

Node degeneracy in signaling pathways. The total number of times a given residue participates in any of the 700 paths (i.e., node degeneracy) is shown for (A) HisF and (B) HisH. Green indicates the holo state, blue indicates the apo state, and cyan indicates an overlap. Note that Leu50:HisF and Glu180:HisH are present in all 700 paths. We note that our decision to specifically analyze the 700 shortest paths between Leu50:HisF and Glu180:HisH was arbitrary. In order to better assess the minimum number of paths required to reliably predict node degeneracy, we analyzed the holo trajectory by varying the number of paths considered and calculating the degeneracy of selected residues/nodes implicated in the allosteric mechanism (Figure 6). We note that the degeneracy of these nodes had largely converged by 350 paths. A similar result was obtained when the apo simulation was analyzed (data not shown). Given that the relative importance of suboptimal paths in determining the competency of an allosteric signal is likely highly system dependent, we do not necessarily recommend this exact number of paths for all analyses. However, we are hopeful that this general benchmark will help guide future researchers in their efforts.
Figure 6

Normalized node degeneracy as a function of the number of suboptimal paths calculated (holo simulation). The degeneracy of selected residues/nodes as a function of paths searched was calculated and normalized by dividing by the total number of paths. The normalized degeneracy of these nodes largely converged by 350 paths. Similar results were obtained when the apo simulation was analyzed (data not shown).

Normalized node degeneracy as a function of the number of suboptimal paths calculated (holo simulation). The degeneracy of selected residues/nodes as a function of paths searched was calculated and normalized by dividing by the total number of paths. The normalized degeneracy of these nodes largely converged by 350 paths. Similar results were obtained when the apo simulation was analyzed (data not shown).

Conclusion

We present WISP, a program that rapidly calculates both optimal and suboptimal communication pathways between distinct protein residues. The program is available as a VMD plugin or a standalone command-line script. WISP outputs path members and lengths that can be subsequently used in the analysis of path distributions, node degeneracy, and other metrics of interest to scientists studying the molecular mechanisms of allostery The utility of our program was presented by performing a dynamical analysis of the HisH-HisF protein. In our test case, allosteric modulation was likely the result of subtle changes in multiple suboptimal pathways rather than large changes in a single optimal path. Additionally, we showed that PRFAR binding causes a large shift toward shorter path lengths (i.e., more correlated motions) in 700 communication pathways between residues HisF:Leu50 and HisH:Glu180. This shift explains the strong allosteric effects of the PRFAR modulator (Figure 4). Remarkably, the significant shift in collective correlated dynamics occurred even at relatively short (tens of nanoseconds) time scales, suggesting that the allosteric signal is rapidly transmitted. The multiple suboptimal pathways are dominated by a few select residues, as indicated by the shift in node degeneracy between the apo and holo states (Figure 5 and Table 2). WISP has been successfully tested on a number of platforms (Table 1). We are hopeful that the program will be a useful tool for the computational-biology community. A numerical representation of the same data from Figure 5. The comparison between the apo and holo states suggests that certain residues are more sensitive to the allosteric effector PRFAR than others (shaded columns).
  28 in total

1.  Structural and Entropic Allosteric Signal Transduction Strength via Correlated Motions.

Authors:  Dong Long; Rafael Brüschweiler
Journal:  J Phys Chem Lett       Date:  2012-06-12       Impact factor: 6.475

Review 2.  CHARMM: the biomolecular simulation program.

Authors:  B R Brooks; C L Brooks; A D Mackerell; L Nilsson; R J Petrella; B Roux; Y Won; G Archontis; C Bartels; S Boresch; A Caflisch; L Caves; Q Cui; A R Dinner; M Feig; S Fischer; J Gao; M Hodoscek; W Im; K Kuczera; T Lazaridis; J Ma; V Ovchinnikov; E Paci; R W Pastor; C B Post; J Z Pu; M Schaefer; B Tidor; R M Venable; H L Woodcock; X Wu; W Yang; D M York; M Karplus
Journal:  J Comput Chem       Date:  2009-07-30       Impact factor: 3.376

3.  Allosteric pathways in imidazole glycerol phosphate synthase.

Authors:  Ivan Rivalta; Mohammad M Sultan; Ning-Shiuan Lee; Gregory A Manley; J Patrick Loria; Victor S Batista
Journal:  Proc Natl Acad Sci U S A       Date:  2012-05-14       Impact factor: 11.205

Review 4.  Allostery and cooperativity revisited.

Authors:  Qiang Cui; Martin Karplus
Journal:  Protein Sci       Date:  2008-06-17       Impact factor: 6.725

Review 5.  Thermodynamics of allostery paves a way to allosteric drugs.

Authors:  Igor N Berezovsky
Journal:  Biochim Biophys Acta       Date:  2013-02-01

Review 6.  Local motifs in proteins combine to generate global functional moves.

Authors:  Ali Rana Atilgan; Canan Atilgan
Journal:  Brief Funct Genomics       Date:  2012-07-18       Impact factor: 4.241

7.  Allostery without conformational change. A plausible model.

Authors:  A Cooper; D T Dryden
Journal:  Eur Biophys J       Date:  1984       Impact factor: 1.733

8.  A distal mutation perturbs dynamic amino acid networks in dihydrofolate reductase.

Authors:  David D Boehr; Jason R Schnell; Dan McElheny; Sung-Hun Bae; Brendan M Duggan; Stephen J Benkovic; H Jane Dyson; Peter E Wright
Journal:  Biochemistry       Date:  2013-06-24       Impact factor: 3.162

9.  Exploring residue component contributions to dynamical network models of allostery.

Authors:  Adam T Vanwart; John Eargle; Zaida Luthey-Schulten; Rommie E Amaro
Journal:  J Chem Theory Comput       Date:  2012-07-05       Impact factor: 6.006

10.  Activation and dynamic network of the M2 muscarinic receptor.

Authors:  Yinglong Miao; Sara E Nichols; Paul M Gasper; Vincent T Metzger; J Andrew McCammon
Journal:  Proc Natl Acad Sci U S A       Date:  2013-06-18       Impact factor: 11.205

View more
  47 in total

1.  Effects of MacroH2A and H2A.Z on Nucleosome Dynamics as Elucidated by Molecular Dynamics Simulations.

Authors:  Samuel Bowerman; Jeff Wereszczynski
Journal:  Biophys J       Date:  2016-01-19       Impact factor: 4.033

2.  The structural basis for Ras activation of PI3Kα lipid kinase.

Authors:  Mingzhen Zhang; Hyunbum Jang; Ruth Nussinov
Journal:  Phys Chem Chem Phys       Date:  2019-06-05       Impact factor: 3.676

3.  The dynamic mechanism of RASSF5 and MST kinase activation by Ras.

Authors:  Tsung-Jen Liao; Hyunbum Jang; Chung-Jung Tsai; David Fushman; Ruth Nussinov
Journal:  Phys Chem Chem Phys       Date:  2017-03-01       Impact factor: 3.676

4.  Contributions of Charged Residues in Structurally Dynamic Capsid Surface Loops to Rous Sarcoma Virus Assembly.

Authors:  Katrina J Heyrana; Boon Chong Goh; Juan R Perilla; Tam-Linh N Nguyen; Matthew R England; Maria C Bewley; Klaus Schulten; Rebecca C Craven
Journal:  J Virol       Date:  2016-05-27       Impact factor: 5.103

Review 5.  Computational Advances for the Development of Allosteric Modulators and Bitopic Ligands in G Protein-Coupled Receptors.

Authors:  Zhiwei Feng; Guanxing Hu; Shifan Ma; Xiang-Qun Xie
Journal:  AAPS J       Date:  2015-05-05       Impact factor: 4.009

6.  Allosteric KRas4B Can Modulate SOS1 Fast and Slow Ras Activation Cycles.

Authors:  Tsung-Jen Liao; Hyunbum Jang; David Fushman; Ruth Nussinov
Journal:  Biophys J       Date:  2018-07-24       Impact factor: 4.033

Review 7.  Detecting Allosteric Networks Using Molecular Dynamics Simulation.

Authors:  S Bowerman; J Wereszczynski
Journal:  Methods Enzymol       Date:  2016-06-20       Impact factor: 1.600

8.  Structure of a pathogen effector reveals the enzymatic mechanism of a novel acetyltransferase family.

Authors:  Zhi-Min Zhang; Ka-Wai Ma; Shuguang Yuan; Youfu Luo; Shushu Jiang; Eva Hawara; Songqin Pan; Wenbo Ma; Jikui Song
Journal:  Nat Struct Mol Biol       Date:  2016-08-15       Impact factor: 15.369

9.  Molecular Basis of S100A1 Activation at Saturating and Subsaturating Calcium Concentrations.

Authors:  Caitlin E Scott; Peter M Kekenes-Huskey
Journal:  Biophys J       Date:  2016-03-08       Impact factor: 4.033

10.  Mapping Mechanical Force Propagation through Biomolecular Complexes.

Authors:  Constantin Schoeler; Rafael C Bernardi; Klara H Malinowska; Ellis Durner; Wolfgang Ott; Edward A Bayer; Klaus Schulten; Michael A Nash; Hermann E Gaub
Journal:  Nano Lett       Date:  2015-08-19       Impact factor: 11.189

View more

北京卡尤迪生物科技股份有限公司 © 2022-2023.