Bernhard C Thiel1, Irene K Beckmann1, Peter Kerpedjiev2, Ivo L Hofacker1,3. 1. Department of Theoretical Chemistry, Faculty of Chemistry, University of Vienna, Vienna, 1090, Austria. 2. Department of Biomedical Informatics, Harvard Medical School, Boston, Massachusetts, 02115, USA. 3. Research Group Bioinformatics and Computational Biology, Faculty of Computer Science, University of Vienna, Vienna, 1090, Austria.
Abstract
We present forgi, a Python library to analyze the tertiary structure of RNA secondary structure elements. Our representation of an RNA molecule is centered on secondary structure elements (stems, bulges and loops). By fitting a cylinder to the helix axis, these elements are carried over into a coarse-grained 3D structure representation. Integration with Biopython allows for handling of all-atom 3D information. forgi can deal with a variety of file formats including dotbracket strings, PDB and MMCIF files. We can handle modified residues, missing residues, cofold and multifold structures as well as nucleotide numbers starting at arbitrary positions. We apply this library to the study of stacking helices in junctions and pseudo knots and investigate how far stacking helices in solved experimental structures can divert from coaxial geometries.
We present forgi, a Python library to analyze the tertiary structure of RNA secondary structure elements. Our representation of an RNA molecule is centered on secondary structure elements (stems, bulges and loops). By fitting a cylinder to the helix axis, these elements are carried over into a coarse-grained 3D structure representation. Integration with Biopython allows for handling of all-atom 3D information. forgi can deal with a variety of file formats including dotbracket strings, PDB and MMCIF files. We can handle modified residues, missing residues, cofold and multifold structures as well as nucleotide numbers starting at arbitrary positions. We apply this library to the study of stacking helices in junctions and pseudo knots and investigate how far stacking helices in solved experimental structures can divert from coaxial geometries.
In RNA 3D structure prediction, knowledge-based potentials are commonly used, especially for coarse-grained approaches that are suitable for larger RNA molecules
[1]. The creation of such potentials requires knowledge extraction from solved RNA structures, usually taken from the Protein Data Bank (PDB)
[2]. PDB files and their newer replacement, MMCIF files, contain atomic coordinates and additional information in the header fields, but do not contain any base-pairing annotations. To extract information about base pairs and their types
[3], dedicated software like MC-Annotate
[4], RNAView
[5], FR3D
[6], DSSR
[7] or the RNApdbee web server
[8] is required. Due to the hierarchical organization of the RNA energy landscape
[9], it is often most convenient to treat secondary and tertiary structure of RNA molecules separately and predict tertiary structures given a secondary structure
[10].For knowledge extraction from RNA-containing PDB files, it is highly desirable to have a software library at hand, which understands the semantics of RNA secondary structures and makes tasks like iterating over loops of a certain type straightforward. Ideally, such a library should be written in an easily accessible scripting language, be well documented and tested and should be available under an open-source license.Libraries other than the
forgi library presented here only partly fill these needs. The Vienna RNA package
[11] can be used to predict secondary structures from sequence, including advanced features like G-Quadruplex prediction and incorporation of SHAPE data. It provides Python and Perl bindings, but deals exclusively with secondary structure. Biopython
[12,
13] is useful for dealing with RNA sequence data and can be used to load RNA 3D structures, but has no dedicated support for RNA secondary structure. PyCogent
[14], a library for genomic biology, has extensive support for nucleic acid sequences, but contains only a lightweight class for RNA secondary structures and code for pseudoknot removal
[15]. A stand-alone version of the latter was included into the
forgi library under the terms of the GNU General Public License 3.0. More specialized libraries include
modeRNA
[16] (homology modeling, Python) and the FR3D suite
[6] (RNA motif search, Matlab). Here, we present the
forgi library
[17], which is centered on RNA secondary structure elements (such as stems, bulges and loops) and makes them usable for 3D structure analysis.
forgi aims at providing a high level API for many common operations, but can be easily extended with new functionality. The flexibility of providing an open source library in a scripting language is a clear benefit over other programs that are only distributed as binaries. While not restricted to work with PDB or MMCIF files,
forgi shines especially where 3D information is analyzed in the context of its secondary structure environment.
Methods
Implementation
The
forgi library
[17] is strongly object-oriented, but takes advantage of module-level Python functions where appropriate. The core object representing the secondary structure is the
BulgeGraph object, which holds a
Sequence instance for the primary sequence. To include secondary structure based 3D coordinates, the
BulgeGraph’s subclass,
CoarseGrainRNA is available. For all-atom 3D analysis, the
forgi library has a built-in integration with Biopython.We will briefly describe the three main data structures that hold the sequence, secondary structure and the tertiary structure representation of an RNA.Each
BulgeGraph holds a
Sequence object. Since
forgi supports loading of data from PDB files (see below), this
Sequence object has to account for many special cases arising from experimental considerations, which will be detailed in the following paragraphs. There are two numbering schemes commonly used for sequences: 1-based indexing and indexing based on an external reference. In particular, many sequences in structural experiments use “1” to dedicate the first residue of a biological macro-molecule, whereas the first residue actually used in the experiment can be upstream of the functional RNA (leading to negative indices) or after the start of the biological unit (leading to an index above 1). The latter is especially common if fragments of larger RNA molecules like the ribosome are studied. Finally, experimenters might decide to insert nucleotides in the middle of a molecule. In order not to affect the numbering of subsequent residues, these inserted residues get the same number as the previous one, followed by a letter (called insertion code).To handle both kinds of indexing, the
Sequence class distinguishes indices by type. Integer indices always refer to 1-based indexing, while tuples compatible to the indices used in Biopython’s PDB module are interpreted as the second kind of indices.For many applications, it is necessary to restrict the RNA alphabet to 4 letters (i.e. 4 residue types), “G”, “C”, “A” and “U”. However, in the cell many RNA molecules are post-transcriptionally modified at certain positions. Many modifications, including the methylation of OH or NH
2 groups and A to I editing, have been implicated with a variety of biological functions
[18]. During parsing of PDB files, we automatically convert such modified residues to the unmodified parent, but in addition store the modification as an annotation in the
Sequence object. The corresponding unmodified parents for 3-letter codes of common modified residues were obtained from PDBeChem
[19] (
http://www.ebi.ac.uk/pdbe-srv/pdbechem/) and the
forgi library has the ability to query this database on the fly if it encounters a new 3-letter code.Finally, many experimental 3D structures do not contain coordinates for all residues present in the experiment. The
forgi
Sequence class can store two version of the sequence, with and without missing residues, and the file parser can extract this information from PDB and MMCIF files.The secondary structure of an RNA is internally represented as a graph, the Bulge Graph, where secondary structure elements (stems, single-stranded regions, interior loops and hairpin loops) form the nodes. Whenever these elements are adjacent along the backbone, they are connected by an edge in this graph. During the Bulge Graph creation, each node gets a unique name such as “s0” for the first stem or “h0” for the first hairpin. The concept of the Bulge Graph, illustrated in
Figure 1, has been described previously in more detail
[20] and is related to the independently developed RAG (RNA as Graph) approach
[21].
Figure 1.
Illustration of the Bulge Graph representation underlying the
forgi library.
Secondary structure elements (stems, bulges and single-stranded regions) are nodes connected by edges. The sequence is shown around the Bulge Graph.
Illustration of the Bulge Graph representation underlying the
forgi library.
Secondary structure elements (stems, bulges and single-stranded regions) are nodes connected by edges. The sequence is shown around the Bulge Graph.forgi supports element-based transformations of the Bulge Graph, such as condensing the secondary structure to an representation similar to RNAshapes
[22], which we use to classify pseudoknots, for example (see below).The
BulgeGraph object allows for easy identification, selection and classification of structural domains, such as multi loops, helices consisting of multiple stems and bulges (termed “rods” in
forgi), and pseudoknots.3D structures are loaded from PDB or MMCIF files using Biopython’s PDB module
[13]. In order to assign a secondary structure to the RNA,
forgi can call either MC-Annotate
[4] (Linux only, no MMCIF-support, binary available at
http://major.iric.ca/MajorLabEn/MC-Tools.html) or DSSR
[7] (binary available after free registration at
http://forum.x3dna.org). As an alternative,
forgi has a built-in heuristic for the detection of canonical base pairs and GU wobble pairs. This heuristic is based on distances along the hydrogen bonds and the coplanarity of the bases, and is not intended to compete with the power of more specialized tools since it will fail in some edge cases, e.g. involving modified residues or residues with missing atoms. This heuristic is a useful fallback, if the above mentioned programs are not available.During loading of the RNA, a helix axis is assigned to stems as described previously
[20]. For each stem, we store start and end coordinates of the helix axis as well as two twist vectors that point towards the minor groove at the beginning and the end of the stem. Similarly, start and end coordinates for bulges, loops and single-stranded regions are stored and can be accessed using the element’s name.forgi 2.0 now fully supports co- and multi-fold structures and can load multiple chains that are connected by base pairs into a single
CoarseGrainRNA object, while chains not connected by any base pair are loaded into separate objects.Using Biopython’s KD-Tree implementation (
Bio.PDB.NeighborSearch), a list of residues within 6 angstrom from a non-RNA C or N atom is obtained. These residues are considered protein-/ligand interacting. Knowledge of interacting residues is particularly useful to avoid biases in statistics about structural features of bare RNA.A cleaned version of the PDB - with modified residues converted to their canonical parent and non-RNA molecules removed is stored as Biopython chains in the
CoarseGrainRNA’s
chains attribute.
Operation
forgi
[17] is compatible with Python 2.7, 3.5 and 3.6, should run on all operating systems where its dependencies are available and has been tested on Linux, Mac and Windows. It makes heavy use of the NumPy
[23] library to speed-up array-based calculations and also depends on SciPy
[24], NetworkX
[25], Biopython
[12,
13], pandas
[26,
27] and
appdirs, all available via the Python Package Index (PyPi) or Anaconda.forgi comes with the two very useful scripts:
rnaConvert.py can be used to convert between many common file formats for RNA structures, including the Vienna format and fasta variants, the bpseq format, the connectivity table (ct) format, MMCIF format and PDB files.
visualize_rna.py can be used to display a coarse-grained representation of an RNA’s secondary structure in
PyMol alongside the all atom structure from PDB files, producing visualizations like those in
Figure 3 and
Figure 5.
Figure 3.
Example of a tRNA where stacking between two non-collinear stems occurs (PDB id 4WJ4
[32]).
Green cylinders were fitted to stems, blue cylinders represent hairpins and the pink cylinder the unpaired nucleotides at the 3’ end. Red cylinders connect stems and indicate single-stranded connections between these stems (multi loop segments). Left: The stems of the anticodon arm (top) and the D-arm stack (according to DSSR) despite being at an angle of 143°. Right: View along the axis of the anticodon arm’s stem. The red nucleotide is the unpaired multi loop segment which mediates stacking to the stem of the D-arm. This illustration was generated using PyMol
[33] via the
visualize_rna.py wrapper in
forgi.
Figure 5.
Examples of coaxial stacking within (
a) an H-type pseudoknot (PDB id 2XD0) and (
b-
d) the three major structural families of kissing hairpins (PDB ids 5KPY, 4FRN and 1ZCI, from left to right). In all four representations the green cylinders were fitted to stems, the turquoise and pink cylinder represent the unpaired nucleotides at the 5’ and 3’ end respectively. Red cylinders connect stems and indicate single-stranded connections between these stems (pseudoknot or multi loop segments). The light-colored stems in (
b–
d) represent the regular stems of kissing hairpins, whereas the kissing stem is colored yellow. Note that panel (
d) (PDB id 1ZCI) shows a kissing hairpin interaction between two RNA chains. Below the 3-dimensional representation of the kissing hairpins, we show a schematic sketch of the structural family’s helix arrangement. These illustrations were generated using PyMol
[33] via the
visualize_rna.py wrapper in
forgi.
To illustrate how the
forgi library makes secondary structure elements usable for 3D structure analysis, we used it to analyze the stacking of adjacent helices in multi loops and pseudoknots in a representative set of RNA 3D structures
[28] (version 3.36, available at
http://rna.bgsu.edu/rna3dhub/nrlist/).While loading these 3D structures into
forgi, DSSR
[7] (Version v1.7.1-2017nov01) was called to obtain the secondary structure and nucleotide level reference stacking annotations. We count a pair of connected helices as stacking, if at least one nucleotide of the first helix’s closing/opening base pair is in a continuous stack with at least one nucleotide of the second helix’s opening/closing base pair. This allows for any number of stacking nucleotides between the stems (not necessarily connected via the backbone) and for bulged out nucleotides which do not contribute to the stack. Our definition of stacking is more relaxed than stricter criteria used elsewhere
[29].For each pair of adjacent stems within a junction, we used
forgi to calculate a number of properties, such as the angle between the stem vectors, the separation vector between the stems’ ends and an offset value between the stems.These properties are based on the axes that were fitted to the helices (see above) and the multi loop segment that connects the two stems. We define the stem vectors
as pointing away from the multi loop segment along the helix axis, where
and
are the helix’s start and end coordinates.The angle between the adjacent stems
i and
h is then defined as the angle between their stem vectors
and
:The offset between stems is calculated as distance between two rays
R
that start at the helix’s end closer to the multi loop segment,
, and extend the helix axis:Depending on the helix orientation, the distance between these rays is either the distance between two lines or the distance between two points or between one point and one line, all of which can be calculated with standard formulas.The following code shows how
forgi was used to calculate these properties for multi loops:We then used pandas
[26,
27], Matplotlib
[30] and a custom library (
https://github.com/Bernhard10/filterAndView) to analyze and visualize the collected data. The results were collected for different classes of RNA independently. This was necessary, because the representative sets of RNA structures contain, by design, homologs of the same molecule in multiple species.For the classification of pseudoknots, Reidys’ concept
[31] based on the definition of the mathematical genus is used. Classes of pseudoknots are defined based on their shadow representations, which contain only crossing base pairs and only one base pair each. On the level of these shadows, only four distinct classes exhibit genus 1, two of which are well known: the H-type pseudoknot and the kissing hairpin. pseudoknots with higher genus contain, among others, the case where a genus 1 pseudoknot is nested within another pseudoknot.In combination with the
forgi library, we wrote a tool that is able to convert structures to their shadow representation, identify and classify the pseudoknots within the structure and describe their helix arrangement in the 3D structure. This tool, called
pseudoknot_analyzer.py, is distributed with the
forgi library in the folder “examples”. We used it to gather statistics about simple H-type and kissing hairpin pseudoknots.
Figure 4a, b illustrates how we measured the angle between stems in pseudoknots via vector directions. In kissing hairpins the angles
α and
β restrict the possible values of the angle
γ. We also include the representative structure of an intermolecular kissing hairpin interaction (lacking the green connection in
Figure 4b) in our analysis. In this special case
α and
β are indistinguishable and were assigned arbitrarily.
Figure 4.
Angles between the stems in pseudoknots.
(
a) and (
b) show the vector directions used for the angle measurement. The distributions of the angles between adjacent stems building
c) an H-type pseudoknot or (
d) a kissing hairpin are shown as histograms mapped to a circle. Furthermore, the distribution of angles between the regular stems of kissing hairpin pseudoknots is shown in the second panel of (
d). Like mentioned in
Figure 2, the angles in
c) measured between stacking stems (detected via DSSR) are colored in blue. Geometries without stacking are colored in orange. The color scheme in (
d) (shades of orange, blue and green) refer to the respective vectors/measured angles (α, β, γ) in the same color scheme as in (
b). Blue bars stand for stacking between the two related stems, whereas orange ones for non-stacking stems. Dark green bars in the second kissing hairpin associated histogram show angles measured between a intramolecular interaction (kissing hairpin pseudoknot), whereas light green bars stand for angles measured between two RNA chains (kissing hairpin interaction).
Results
We used the helix-centered representation of the 3D structure to analyze the geometry of coaxially stacking helices. The relative geometry of two cylinders in 3D space can be described by five parameters: A separation vector (three parameters) and two angles for the relative orientation in 3D space. In
Figure 2 and
Figure 4, we show the single angle calculated between the vectors along the helix axes, as a proxy for these parameters.
Figure 2.
Distribution of angles between adjacent stems in multi loops.
(
a) Angles close to 0° mean parallel stems whereas angles close to 180° correspond to potentially stacking stems. Angle distributions in (
b) tRNAs and (
c) ribosomal RNA are shown as a histogram mapped onto a circular plot illustrating the angles. The (inner) blue bars are instances where DSSR detects stacking on the atom-level scale. The orange bars start at the top of the blue bars and indicate geometries where DSSR does not detect stacking.
Distribution of angles between adjacent stems in multi loops.
(
a) Angles close to 0° mean parallel stems whereas angles close to 180° correspond to potentially stacking stems. Angle distributions in (
b) tRNAs and (
c) ribosomal RNA are shown as a histogram mapped onto a circular plot illustrating the angles. The (inner) blue bars are instances where DSSR detects stacking on the atom-level scale. The orange bars start at the top of the blue bars and indicate geometries where DSSR does not detect stacking.
Example of a tRNA where stacking between two non-collinear stems occurs (PDB id 4WJ4
[32]).
Green cylinders were fitted to stems, blue cylinders represent hairpins and the pink cylinder the unpaired nucleotides at the 3’ end. Red cylinders connect stems and indicate single-stranded connections between these stems (multi loop segments). Left: The stems of the anticodon arm (top) and the D-arm stack (according to DSSR) despite being at an angle of 143°. Right: View along the axis of the anticodon arm’s stem. The red nucleotide is the unpaired multi loop segment which mediates stacking to the stem of the D-arm. This illustration was generated using PyMol
[33] via the
visualize_rna.py wrapper in
forgi.
Angles between the stems in pseudoknots.
(
a) and (
b) show the vector directions used for the angle measurement. The distributions of the angles between adjacent stems building
c) an H-type pseudoknot or (
d) a kissing hairpin are shown as histograms mapped to a circle. Furthermore, the distribution of angles between the regular stems of kissing hairpin pseudoknots is shown in the second panel of (
d). Like mentioned in
Figure 2, the angles in
c) measured between stacking stems (detected via DSSR) are colored in blue. Geometries without stacking are colored in orange. The color scheme in (
d) (shades of orange, blue and green) refer to the respective vectors/measured angles (α, β, γ) in the same color scheme as in (
b). Blue bars stand for stacking between the two related stems, whereas orange ones for non-stacking stems. Dark green bars in the second kissing hairpin associated histogram show angles measured between a intramolecular interaction (kissing hairpin pseudoknot), whereas light green bars stand for angles measured between two RNA chains (kissing hairpin interaction).Examples of coaxial stacking within (
a) an H-type pseudoknot (PDB id 2XD0) and (
b-
d) the three major structural families of kissing hairpins (PDB ids 5KPY, 4FRN and 1ZCI, from left to right). In all four representations the green cylinders were fitted to stems, the turquoise and pink cylinder represent the unpaired nucleotides at the 5’ and 3’ end respectively. Red cylinders connect stems and indicate single-stranded connections between these stems (pseudoknot or multi loop segments). The light-colored stems in (
b–
d) represent the regular stems of kissing hairpins, whereas the kissing stem is colored yellow. Note that panel (
d) (PDB id 1ZCI) shows a kissing hairpin interaction between two RNA chains. Below the 3-dimensional representation of the kissing hairpins, we show a schematic sketch of the structural family’s helix arrangement. These illustrations were generated using PyMol
[33] via the
visualize_rna.py wrapper in
forgi.The distribution of angles between adjacent stems in tRNAs multi loops (see
Figure 2a) shows the expected bimodal distribution with one mode slightly below 90° and another mode between 160° and 170°, which fits to the known helix arrangement in the L-shaped tRNA. As confirmed by comparison to annotations with DSSR, the second peak is almost exclusively due to stacking helices, even at angles as small as 140°. In
Figure 3 we show an example of such a coaxial stack that has been strongly bent (possibly by the tRNA synthetase) without completely breaking the stack or affecting the canonical tRNA secondary structure.The second family of RNA molecules with lots of data available is ribosomal RNA. Here we find that the angle of adjacent stems in multi loops is almost uniformly distributed above 20° until a peak from 135° to 170°, where DSSR annotates roughly half of the geometries as stacking (see
Figure 2c). 7% of the stacking geometries and 67% of the non-stacking geometries with an angle above 140° also have an offset above 10Å between the extended stem axes.Additionally we analyzed the angle distribution between the stems forming simple H-type pseudoknots or kissing hairpins. Most angles measured within an H-type pseudoknot are between 120° and 180° (see
Figure 4c). In this range, 35 out of 67 instances correspond to stacking. One example within this range is shown in
Figure 5a, which represents a processed non-coding RNA, which regulates a bacterial antiviral system (PDB id 2XD0
[34]).The distribution illustrated in
Figure 4d shows mainly values between 130° and 180° for the angles
β and especially
α. One additional angle measurement between the two regular stems (see
Figure 4d, angle
γ) shows one peak at about 20° and one at about 65°. Within the class of kissing hairpins we often find coaxial stacking, but most of the time only one of the two regular stems stacks with the kissing stem in the middle. With the help of the coarse grained representation we were able to divide the class of kissing hairpins into three different structural families (see
Figure 5b-d).The first family is especially common among (A-)riboswitches. Here the two regular stems are oriented almost parallel (
γ below to 32°) with the second one (counting from the 5’ end) stacking onto the kissing stem. The angles
α and
β are above 130°. One example is the structure with PDB id 5KPY
[35] shown in
Figure 5b. Here, the link from the first regular stem stacks onto it and interacts with the kissing stem via base multiplets and A-Minor interactions. This way, the roughly parallel orientation of all 3 stems is stabilized by stacking and base-pairing interactions. Interestingly, the kissing stem is more parallel to the first stem than to the second stem, onto which it stacks directly (
α > β).The second structural family is shown in
Figure 5c. Here the two regular stems are close to 90°, whereas the kissing stem is along the arc between them. This conformation is found in several groups of non coding RNA including some 23S ribosomal RNA and the cobalamin riboswitch regulatory element (PDB id 4FRN
[36]) shown in
Figure 5c.The two families as well as some conformations in between are observable within intramolecular pseudoknots. As mentioned,
forgi is also able to model multiple RNA chains that interact with each other forming an intermolecular complex. One example is the dimerization initiation site of the HIV type 1 (PDB id 1ZCI
[37]), illustrated in
Figure 5d and being the only example of the third family of kissing hairpin pseudoknots. Here the kissing hairpin interaction shows a nearly perfect coaxial stacking between all three involved stems. In this case
β is close to 0°, because stacking takes place at the other side of the kissing stem and thus the complementary angle is close to 180°.
Discussion
Using the
forgi library
[17] we have analyzed the relative orientation of helices in junctions and pseudoknots. While stacking between adjacent helices is common, we found that their orientation often deviates significantly from co-linearity, suggesting that junctions introduce flexibility into the RNA structure while still maintaining the benefit of stacking interactions. Previous studies that assign coaxial geometries based on manual inspection
[38] miss this deviation from coaxiality that becomes apparent once you actually calculate the helix axis. Our approach allowed us to perform this analysis on the scale of stems, as opposed to the smaller all-atom scale used by the program DSSR and in previous surveys
[39] or the level of networks of (noncanonical) base pairs
[38].Conversely, we found that out of 1257 pairs of adjacent stems in ribosomal RNA structures with an angle above 140°, only roughly half (608) are annotated as stacking by DSSR. This becomes clear if we consider that the angle between stems is only a proxy for a 5-dimensional orientation parameter. In particular, a large offset means that stem axes with an angle close to 180° can be parallel without being coaxially stacked. Indeed, it is not uncommon that all three stems in a 3-way junction are roughly parallel, with two stems forming a coaxial stack and the third having a higher offset
[40].There is growing interest in predicting pseudoknots in RNA structures as they are involved in a variety of biological functions
[41]. The
forgi library allows us to easily identify pseudoknots in RNA 3D structures and gather statistics on the frequency of pseudoknot types, sizes, and composition. Kissing hairpins formed between two RNA molecules are known to often form continuous stacks between all three helices, such as the pseudoknot in
Figure 5d. In contrast to these intermolecular kissing hairpins, we find that stacking between all three helices is seldom possible in intramolecular pseudoknots. Instead we find that the limited length of all loop segments makes it nearly impossible to form coaxial stacking of all three stems in one line in a single RNA chain. Thus, in the main families of kissing hairpin conformations, the regular (outer) stems are oriented parallelly or almost perpendicular with the kissing helix stacking onto at most one of the two regular stems. These structures are often further stabilized by base triplets like those found in
Figure 5b.Similar to stacking conformations in multi loops, many stacking helices in pseudoknots form angles below 180°. A deviation of the coaxiality between stems can have multiple reasons such as a higher flexibility of short helices within a pseudoknot as well as strain from short stem connections. But there are also structures that show more classical coaxial stacking like PDB id 2XD0, see
Figure 5a.Results and challenges of the application of
forgi to the analysis of pseudoknots are described in more detail in the thesis by Beckmann
[42].Varying additional parameters like the minimal number of base pairs required to count an interaction as a helix allow for a better understanding about the principles of the formation of three-dimensional RNA structures. The insight in the world of pseudoknots and multi loops presented here can support the improvement of the prediction of RNA structures and help identify unrealistic multi-loop conformations predicted by current RNA structures prediction tools. We are now in the process of implementing additional features for the RNA 3D structure prediction program Ernwin
[20] based on our findings about stacking and pseudoknots.
Conclusions
forgi
[17] is a multi-purpose Python library for dealing with RNA on the levels of sequence, secondary structure and tertiary structure. By providing our code as a Python library, we give users of our tool more flexibility than a single executable program could provide. Furthermore, our code is fully open source, giving researchers the possibility to comprehend and where needed extend the inner workings of the code.forgi is well documented, with a tutorial available at
https://ViennaRNA.github.io/forgi/ and a complete API documentation following the Python standard of docstrings parsable by Sphinx. It contains an extensive automatic test suite (unit and integration tests) and has been optimized for speed, maintainability and usefulness.
Data availability
Underlying data
The PDB ids analyzed were taken from version 3.36 of the representative sets of RNA 3D structures
[28] at a cutoff of 4 Å,
http://rna.bgsu.edu/rna3dhub/nrlist/release/3.36/4.0A.
Extended data
Open Science Framework: 3D based on 2D:
forgi 2.0 Extended Data.
https://doi.org/10.17605/OSF.IO/HDJRU
[43]. This project contains the following extended data files:assignment_of_classes_to_pdbids.csv: Assignment of PDB ids to RNA type. These annotations were generated in a semi-manual way.multiloop_angles.csv: Angles and offsets measured in PDB structures for multi loops, generated with the script
describe_rna.py, which is available in the examples folder of
forgi.pseudoknot_angles.tsv: Angles measured in pseudoknots, generated with
pseudoknot_analyzer.py, which is available in the examples folder of
forgi.Extended data are available under the terms of the Creative Commons Zero "No rights reserved" data waiver (CC0 1.0 Public domain dedication).
Software availability
Software available from:
https://pypi.org/project/forgi/ (
pip install forgi) and
Bioconda.Archived source code at time of publication:
https://doi.org/10.5281/zenodo.2582870
[17].License:
GNU General Public License 3.0.I'm satisfied with all modifications the authors made.I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard.The authors present a new version of the forgi software, a python library to analyze the tertiary structure of secondary structure elements in RNA. It takes as input almost any format of 2D or 3D information.This manuscript describes a new method for easily obtaining the angles and stacking patterns in a multi-branched loop and a pseudoknot/kissing hairpin. The authors validate their results by testing the software on known pseudo-knots and junctions, and obtain results that are consistent with the state-of-the-art knowledge of RNA local structure organization.The authors highlight significant improvements compared to previously published packages and specifically all-atom based methods. For instance, a deviation from coaxiality is very common but can be easily missed if a manual inspection is performed without doing computations.The software is clearly presented, well-validated, freely available and open source. The results presented are significant and the tool will be very useful to the RNA bioinformatics community.Although, this manuscript does not discuss extensively the analysis of the results, the latter is included in the first author’s thesis, and freely accessible as further reading.`Minor remarksPage 4: ‘’with and without missing residues’’, it is easy to imagine how the graph without the missing residue is, but how are the ‘’missing residues’’ added? (i.e. are you inferring which residues are missing, and if yes, how?)Page 5: The authors mention a ‘’cleaned version’’ of the PDB. Is the only ‘’cleaning’’ performed is the conversion of the residue names?Page 5: It would be helpful to clarify what is a ‘’simplified example’’ of the code? What sort of simplification was applied to it? Is the real code significantly more complicated to use than the example? If it is not, the authors might want to consider rewording this as it appears to undermine the real simplicity of use of forgi (which is very user friendly).We have read this submission. We believe that we have an appropriate level of expertise to confirm that it is of an acceptable scientific standard.Thank you for the constructive comments.Our PDB and CIF parsers extract the information about missing residues from the files. For this purpose we have patched the biopython PDB parsing routine; this has already been merged into the biopython source. Following your input, we have revised the text to reflect this.Yes, the cleaned version only has modified residues renamed and non-rna molecules removed. We hope this is now clear from the revised text.We have expanded the sample code to compute the proper direction of helices, thus it is now fully functional and no longer "simplified".We have also added the code used to calculate the offset.The article is written in a clear and concise way. Illustrations perfectly complement the content. I have only 3 comments to the authors and I would like them to be taken into account in the revision:For unknown reasons, the authors introduced a new spelling of the name pseudoknot. Throughout the whole article, they use spelling with space: "pseudo knots". I haven't met such a form before. The authors of the article also used the term "pseudoknot" and not "pseudo knot" in their previous works. So, the spelling should be corrected.On page 3, the authors write about FR3D suite, but they do not cite the paper about the tool. Please, include the appropriate citation here.As the paper subject is calculating helix angles and stacking parameters, I would expect to see the formulas used to calculate these data (or - at least - the pseudocode showing how they are calculated). The lack of such details is serious negligence.I have read this submission. I believe that I have an appropriate level of expertise to confirm that it is of an acceptable scientific standard, however I have significant reservations, as outlined above.Thank you for the constructive comments.We have now included the exact formulas for the helix angles as requested. In particular this makes clear what sign we use for the helix vectors.The FR3D reference was present in our LaTeX source and the resulting HTML version, but got lost in the pdf conversion. This has been fixed in the revised version.
Authors: Huanwang Yang; Fabrice Jossinet; Neocles Leontis; Li Chen; John Westbrook; Helen Berman; Eric Westhof Journal: Nucleic Acids Res Date: 2003-07-01 Impact factor: 16.971
Authors: Devadatta Gosavi; Iwona Wower; Irene K Beckmann; Ivo L Hofacker; Jacek Wower; Michael T Wolfinger; Joanna Sztuba-Solinska Journal: RNA Biol Date: 2021-12-31 Impact factor: 4.652