RNA model: Difference between revisions

From OxDNA
Jump to navigation Jump to search
No edit summary
No edit summary
Line 24: Line 24:
|-
|-
| 1 unit of length
| 1 unit of length
| 8.518x10<math>^{-10}</math> m
| 8.4x10<math>^{-10}</math> m
|-
|-
| 1 unit of energy
| 1 unit of energy
Line 33: Line 33:
|-
|-
| 1 unit of force
| 1 unit of force
| 4.863x10<math>^{-11}</math> N
| 49.3x10<math>^{-11}</math> N
|-
|-
| 1 unit of mass
| 1 unit of mass

Revision as of 18:09, 10 March 2014

Description of the oxRNA model

The RNA model, oxRNA, treats each RNA nucleotide as a single rigid body with multiple interaction sites, following the coarse-graining apporach adopted for the DNA model. The nucleotides interact with pairwise interaction potentials, which are listed below:

  1. Backbone connectivity Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm backbone~}} ,
  2. Excluded volume Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm exc~}} ,
  3. Hydrogen bonding Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm H.B.~}} ,
  4. Nearest-neighbor stacking Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm stack~}} ,
  5. Cross-stacking in a duplex Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm cross~st.}} ,
  6. Coaxial stacking Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm cx.~stack}} .

which are schematically illustrated in the picture:

Image duplex combined annotated.png


Simulation units

The code uses dimensionless energy, mass, length and timescales for convenience. The relationship between simulation units (SU) and SI units is given below.

Simulation unit Physical unit
1 unit of length 8.4x10Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ^{-10}} m
1 unit of energy 4.142x10Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ^{-20}} J
1 unit of temperature 3000 K
1 unit of force 49.3x10Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ^{-11}} N
1 unit of mass 5.34x10Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ^{-25}} kg
1 unit of time 3.06x10Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle ^{-12}} s


Running simulation with the oxRNA model

The oxRNA model is integrated into the oxDNA simulation code. In particular, it is possible to use Virtual Move Monte Carlo (VMMC), Monte Carlo (MC) and Molecular Dynamics (MD) simulation algorithms using the same format of input file as for the DNA model, with the following additional line included in the input file to specify RNA model:

interaction_type = RNA

The RNA model comes with two parametrizations, the average-base and sequence-dependent one. In the average-base parametrization, the Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm H.B.}} interaction strengths are the same for all Watson-Crick and wobble base pairs (AU, GC, GU) and 0 for all other types of base pairs. The interaction strengths have the same strength for all possible pairs of nucleotides interacting with stacking interaction Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm stack}} . In the sequence-dependent version of the model, the interaction strengths of Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm stack}} and Failed to parse (SVG (MathML can be enabled via browser plugin): Invalid response ("Math extension cannot connect to Restbase.") from server "https://wikimedia.org/api/rest_v1/":): {\displaystyle V_{\rm H.B.}} depend on the type of interacting bases.

The average-base parametrization is used by default. In order to use the sequence-dependent version of the model, the following options need to be added into the input file:

use_average_seq = 0
seq_dep_file = rna_sequence_dependent_parameters.txt

Note that the file rna_sequence_dependent_parameters.txt needs to be located in the directory where you run the simulation, or full location of the file needs to be specified in seq_dep_file option.

Furthermore, the configuration files need to be generated so that the nucleotides are positioned so that they satisfy RNA potentials (for instance in the case of duplex, they need to be initialized in an A-helical structure). For this purpose, a script generate-RNA.py is provided in UTILS/ subdirectory of the source code main directory. For instance, if one wants to generate an initial configuration of three strands, two of them complementary (with sequence 3'-GCAAGUCG-5' and its complementary) and in a duplex configuration, and one single strand with sequence 3'-ACCCGU-5', one needs to create the following file text file, called for example sequences.txt:

DOUBLE GCAAGUCG
ACCCGU

Note that the sequences are always specified in 3'-5' order. In order to create the initial configuration files generated.top and generated.conf with the duplex and single strand randomly placed in a simulation cube with side of length 20 in simulation units, run the script

generate-RNA.py sequences.txt generated 20.0

which will create the configuration files. Those can then be used as initial configuration for the simulations. Other input command options that apply to oxDNA, such as use of external forces, apply with the same syntax to oxRNA as well and are described in more detail in the Documentation.


For an example on how to use VMMC simulations to determine the melting temperature of an RNA duplex, please see the RNA duplex melting tutorial.

Visualization of RNA configurations

In order to visualize the configurations of the oxRNA model, one can use the traj2chimera.py script, as described for the oxDNA model. It is however necessary to first set environment variable OXRNA to 1 in order for the script to properly generate visual representation of oxRNA:

export OXRNA=1

The visualization of configuration specified in, for example, generated.top and generated.conf can be then obtained by running

traj2chimera.py generated.conf generated.top 

in the UTILS/ directory which creates files generated.conf.pdb and chimera.com which can then be visualized with Chimera software by running the following command:

chimera generated.conf.pdb chimera.com

or alternatively, you can load generated.conf.pdb in the Chimera software and then click on Tools->General Controls->Command line and specify

read chimera.com

in the command line, where chimera.com needs to be present in the directory where you started Chimera.


References

The model and its performance is discussed in detail in the following reference:

P. Šulc, F. Romano, T. E. Ouldridge, J. P. K. Doye, A. A. Louis: A nucleotide-level coarse-grained model of RNA, submitted