3DNA Forum

Questions and answers => General discussions (Q&As) => Topic started by: xiangjun on August 16, 2012, 11:48:16 pm

Netiquette · Download · News · Gallery · Homepage · DSSR Manual · G-quadruplexes · DSSR-Jmol · DSSR-PyMOL · DSSR Licensing · Video Overview· RNA Covers

Title: How to identify triplets, quadruplets and higher-order base associations
Post by: xiangjun on August 16, 2012, 11:48:16 pm
The find_pair -p option can find all base pairs and higher-order base associations. I implemented this option early on in 3DNA v1.x; yet in the 2003 Nucleic Acids Research paper (http://nar.oxfordjournals.org/content/31/17/5108.full) and the corresponding find_pair -h output for v1.5, I deliberately omitted mentioning this functionality. I was hoping to further refine the algorithm/implementation, and to write up a detailed method paper on find_pair (http://x3dna.org/highlights/what-find_pair-in-3dna-can-do), a core 3DNA component. After leaving Rutgers nearly a decade ago, I've continuously maintained and refined 3DNA. However, for various reasons, up to now I've not been able to finish the long overdue 'technical' manuscript.

Over the years, numerous RNA structural bioinformatics resources have taken advantage of the functionality provided by find_pair; RNAView & BPS, two Rugters-based tools, are based directly on early versions of the program. It was only in the 3DNA 2008 Nature Protocols paper (http://www.nature.com/nprot/journal/v3/n7/abs/nprot.2008.104.html) that I first illustrated the functionality of the find_pair -p option, in the protocol "identification of higher-order base associations in ribosomal RNA". This post provides further detailed examples so 3DNA users can take better advantage of this still underused functionality, useful in RNA structure related applications (http://forum.x3dna.org/rna-structures/what-can-3dna-do-for-rna-structures/).

Let's create a new directory (folder), named 'find_pair-p-examples', and change to that directory. Now the directory is empty (check with ls).

Code: [Select]
mkdir find_pair-p-examples
cd find_pair-p-examples
ls

As an example, here we use the crystal structure of an RNA tetraplex (UGAGGU)4 with A-tetrads, G-tetrads, U-tetrads and G-U octads: NDB id: ur0023 (http://ndbserver.rutgers.edu/atlas/xray/structures/U/ur0023/ur0023.html); PDB id: 1j6s (http://www.rcsb.org/pdb/explore/explore.do?structureId=1J6S) (see figure below). The structure was solved by Sundaralingam et al. (http://www.ncbi.nlm.nih.gov/pubmed/12842044) at 1.4 Ångstroms resolution [Structure. 2003 Jul; 11(7):815-23]. Its asymmetric unit contains 4 single chains (http://ndbserver.rutgers.edu/atlas/xray/structures/U/ur0023/UR0023-asym.jpg).The NDB/PDB provides 4 biological assemblies, each consisting of 4 identical chains from the asymmetric unit. Download biological assembly 1 from the NDB (or the PDB, if you prefer; but notice the case difference in PDB id):

(http://ndbserver.rutgers.edu/atlas/xray/structures/U/ur0023/UR0023-biol1.jpg)
Code: [Select]
wget ftp://ndbserver.rutgers.edu/NDB/coordinates/na-biol/1j6s.pdb1
Run find_pair -p on '1j6s.pdb1'. Note the -all_model option; by default, 3DNA programs (such as find_pair) handle only the first model (structure) in a given PDB data file.
Code: [Select]
find_pair -p -all_model 1j6s.pdb1 1j6s.mbp
At the end of output file '1j6s.mbp', one can see the following identified multiplets: one octad and three tetrads:
Code: [Select]
    1: #8 [1]...1>A:...1_:[BRU]u + [2]...1>A:...2_:[..G]G + [47]...2>A:...1_:[BRU]u + [48]...2>A:...2_:[..G]G + [93]...3>A:...1_:[BRU]u + [94]...3>A:...2_:[..G]G + [139]...4>A:...1_:[BRU]u + [140]...4>A:...2_:[..G]G
    2: #4 [3]...1>A:...3_:[..A]A + [49]...2>A:...3_:[..A]A + [95]...3>A:...3_:[..A]A + [141]...4>A:...3_:[..A]A
    3: #4 [4]...1>A:...4_:[..G]G + [50]...2>A:...4_:[..G]G + [96]...3>A:...4_:[..G]G + [142]...4>A:...4_:[..G]G
    4: #4 [5]...1>A:...5_:[..G]G + [51]...2>A:...5_:[..G]G + [97]...3>A:...5_:[..G]G + [143]...4>A:...5_:[..G]G

Among other outputs, there is also a file named 'multiplets.pdb' which contains the atomic coordinates of the corresponding multiplets, each oriented in its most-extended view. The base multiplets can be extracted with ex_str and then converted to .r3d format for Raster3D or PyMol rendering (see also post "What can 3DNA do for RNA structures? (http://forum.x3dna.org/rna-structures/what-can-3dna-do-for-rna-structures/)" for more examples).
Code: [Select]
ex_str -1 multiplets.pdb oct.pdb
r3d_atom -od -r=0.1 -b=0.2 oct.pdb stdout | render -png > oct.png

ex_str -2 multiplets.pdb A-tetrad.pdb
r3d_atom -od -r=0.1 -b=0.2 A-tetrad.pdb stdout | render -png > A-tetrad.png

ex_str -3 multiplets.pdb G-tetrad.pdb
r3d_atom -od -r=0.1 -b=0.2 G-tetrad.pdb stdout | render -png > G-tetrad.png

The three png images ('oct.png', 'A-tetrad.png' and 'G-tetrad.png') as generated directly above are attached below.

Created and maintained by Dr. Xiang-Jun Lu [律祥俊] (xiangjun@x3dna.org)
The Bussemaker Laboratory at the Department of Biological Sciences, Columbia University.