Skip to main content

Characterising RNA secondary structure space using information entropy

Abstract

Comparative methods for RNA secondary structure prediction use evolutionary information from RNA alignments to increase prediction accuracy. The model is often described in terms of stochastic context-free grammars (SCFGs), which generate a probability distribution over secondary structures. It is, however, unclear how this probability distribution changes as a function of the input alignment. As prediction programs typically only return a single secondary structure, better characterisation of the underlying probability space of RNA secondary structures is of great interest. In this work, we show how to efficiently compute the information entropy of the probability distribution over RNA secondary structures produced for RNA alignments by a phylo-SCFG, and implement it for the PPfold model. We also discuss interpretations and applications of this quantity, including how it can clarify reasons for low prediction reliability scores. PPfold and its source code are available from http://birc.au.dk/software/ppfold/.

Background

The function of RNA molecules is known to depend on their three-dimensional structure, which is stabilized by a secondary structure scaffold of basepairing. The secondary structure is defined by hydrogen bonds between nucleotides, which form across the structure for thermodynamic stability and molecular function. Despite its importance, the accurate prediction of RNA secondary structure remains an unsolved challenge in computational biology.

With the advent of next-generation sequencing technologies and new methods in transcriptomics, an explosively growing amount of biological RNA data is available in public databases such as Rfam [1] and RNA STRAND [2]. This makes it possible to acquire a large number of RNA alignments to be used in comparative RNA secondary structure predictions. This is especially significant in the case of long RNAs such as RNA viral genomes and long genomic introns, many of which are known to have functional, conserved secondary structures.

Several methods have been established to predict RNA secondary structures from nucleotide sequences. In this paper, we focus entirely on non-pseudoknotted secondary structure prediction. Thermodynamic optimisation based on minimising free-energy functions has been used to great effect in algorithms such as mfold [3], UNAFold [4] and RNAfold [5]. In a different approach, stochastic context-free grammars (SCFGs) have also been successfully used to model RNA secondary structure. The Pfold program [6, 7], for example, combines molecular evolution with a lightweight SCFG model (known as a phylo-grammar) to predict the consensus secondary structure of RNA alignments, and has in the past shown to be highly accurate for structural alignments [8]. PPfold is a recent multithreaded reimplementation of Pfold [9].

Common to these methods is that they produce a probability distribution over all possible nested secondary structures for the input sequences, but usually only a single, optimal secondary structure is reported to the user. A particularly interesting question is how the underlying distribution changes as a function of input data. Due to the large space of possible secondary structures, however, it is difficult to report useful quantities to describe this. Information entropy is one such measure.

Entropy computations in the context of RNA secondary structure prediction have been considered previously from a thermodynamic perspective, calculating the thermodynamic entropy over both secondary structure space [10, 11] and tertiary structure space [12]. Positional thermodynamic entropy [5] as well as thermodynamic entropy changes in response to basepair mutations [13] have also been computed. Additionally, SCFG-based methods have recently been utilised for calculating both the information entropy of individual basepairs in a single-sequence context [14], and the thermodynamic entropy changes in response to basepair mutations. However, no form of entropy has been computed previously in the case of comparative RNA secondary structure prediction.

The information entropy H of a probability distribution P with a set of events X is defined as:

H ( P ) = - x X P ( x ) log 2 ( P ( x ) ) .
(1)

The information entropy is a measure for the "spread" of the probability distribution, and has well-defined lower and upper bounds. The minimum entropy of 0 occurs when there is only one outcome with probability 1. For n possible outcomes, the maximum entropy is equal to log2 (n) and occurs for the uniform distribution. For a probability distribution, an entropy of k bits indicates that the expected value of the information content of observing a single outcome is k bits. In the context of secondary structure prediction, a low entropy therefore indicates that few secondary structures dominate the probability space, whereas a high entropy indicates a more even probability distribution over possible secondary structures. Thus, information entropy is a useful single quantity to characterize the underlying probability distribution of secondary structures.

In the case of RNA secondary structure prediction based on a semantically unambiguous SCFG, the information entropy of the probability distribution over RNA secondary structures can be computed as the derivational entropy of the SCFG that generates the distribution. We restrict ourselves to semantically unambiguous SCFGs, in order to maintain a one-to-one correspondence between SCFG derivations and secondary structures. Thus, throughout this paper we use "information entropy" and "derivational entropy" interchangeably.

Notation

Consider RNA alignments of k sequences (k ≥ 1), with the i'th column denoted c i Σk = {"A", "C", "G", "U", "-"}k \ {"-"}k. A stochastic context-free phylo-grammar (phylo-SCFG) on such alignments is a tuple G = ((Σk, N, S, R), P), where:

  • Σkforms the (finite) set of terminal symbols

  • N is a finite set of nonterminal symbols, such that k N=

  • S is the start symbol, S N

  • R is a finite set of production rules, each rule of the form Aα, A N and α (∑k N)*

  • P is a function from R to real numbers in the interval [0,1]

In the case of a phylo-grammar, P can be interpreted as Bayesian probabilities equal to the product of prior probabilities that only depend on the type of rule being used, and a likelihood factor that is typically derived from a phylogenetic model and is a function of the alignment columns. We will return to this more formally later. Furthermore, we assume the grammar is proper, that is A N: ∑π = (Aα)P(π) = 1.

Let d be a complete (left-most) derivation of the grammar. Informally, a complete derivation is a sequence of production rules, such that starting from the start symbol, and sequentially replacing all nonterminals with a production rule emitting from that nonterminal, a string of terminal symbols is obtained. The probability of d is the product of the probability of all rules occurring in d:

p ( d ) = A α P ( A α ) f d ( A α )
(2)

where f d (A → α) is the number of times rule A → α occurs in derivation d.

The grammar is consistent if ∑ d p(d) = 1, where the sum is over all possible derivations of the grammar. In the case of phylo-grammars, consistency implies that the total probability of the grammar emitting all alignments of k sequences (of all lengths) is 1.

The expected frequency (count) of a rule A → α in all derivations of the grammar is

E f ( A α ) = d p ( d ) f d ( A α ) .
(3)

The expected frequency of each rule can be computed in practice using a dynamic programming algorithm known as the inside-outside algorithm, as described in [15]. Following the approach of [16], we factorise a complete derivation d at each occurrence of rule Aα into an "innermost" sub-derivation d 2 : α d 2 s , where s (∑k)*, and two "outermost" sub-derivations d 1 , d 3 : S d β A γ , β d 1 t , γ d 3 u , where β, γ (∑k N)* and t, u (∑k)*. Then

E f ( A α ) = O ( A ) I ( α ) P ( A α ) ,
(4)

with

I ( α ) = d d 2 p ( d 2 )
(5)
O ( A ) = d d 1 , d 3 p ( d 1 ) p ( d 3 ) .
(6)

The I(α) and O(A) variables can also be computed for a particular string C l of length l, using the inside-outside algorithm in O(l3) time.

The derivational entropy of an SCFG is the information entropy of the probability distribution of all derivations under the SCFG (c.f. equation 1):

H ( G ) = - d p ( d ) log 2 ( p ( d ) )
(7)

where the sum is over all possible derivations of the grammar. This quantity can be computed efficiently using expected rule frequencies [16]:

H ( G ) = - A α log 2 ( P ( A α ) ) E f ( A α ) .
(8)

We assume that the phylo-SCFG describes RNA secondary structure, and while it may be syntactically ambiguous, it is semantically unambiguous. In practice, this means that there may be a number of possible derivations for a particular alignment, but there is a one-to-one correspondence between derivations and consensus secondary structures for the RNA alignment. Furthermore, we express RNA structure SCFGs in double emission normal form [17], allowing only rules of the following types:

Type 1 : A c Type 2 : A c B c Type 3 : A B C

for A, B, C N, c, c' Σk. Apart from generating empty strings, all SCFGs modelling nested RNA secondary structures can be written in double emission normal form, so the methods presented here can be adapted to RNA secondary structure grammars of all types. Additionally, they can also be adapted for specific mildly context-sensitive RNA grammars that generate specific types of pseudoknots.

Type 1 rules correspond to the production of a single column of the alignment, and their probability can be expressed as

P ( A c ) = P G ( A c ) P T ( c | ċ )
(9)

where P G (Ac) only depends on A, and P T ( c | ċ ) is the likelihood of observing column c under the phylogenetic model, assuming that it is unpaired in the consensus structure (denoted by ċ ).

Type 2 rules correspond to the production of two basepaired columns of the alignment, and their probability can be expressed as

P ( A c B c ) = P G ( A c B c ) P T ( c , c | c , c ^ )
(10)

where P G (AcBc') only depends on A and B, and P T ( c , c | c , c ^ ) is the likelihood of observing column pair c, c' under the phylogenetic model, assuming that they are paired with each other in the consensus structure (denoted by c , c ^ ).

Type 3 rules express bifurcation and correspond to dividing the alignment into two parts. As these rules do not depend on alignment columns, we have:

P ( A B C ) = P G ( A B C ) 1
(11)

where P G (ABC) only depends on A, B and C.

It is now clear that the probability of any particular derivation under a phylo-SCFG this structure can be expressed as a product of two probabilities: a probability p G that only depends on the types of rules used, and a probability p T that only depends on the emitted alignment columns: p(d) = p G (d) p T (d), with

p G ( d ) = r a P G ( r a ) f d ( r a ) r b P G ( r b ) f d ( r b ) × r c P G ( r c ) f d ( r c )
(12)
p T ( d ) = r a P T ( c | ċ ) f d ( r a ) r b P T ( c , c | c , c ^ ) f d ( r b )
(13)

for r a R of Type 1, r b R of Type 2, r c R of Type 3.

Given a single RNA alignment, there are typically a large number of possible derivations, each corresponding to a possible secondary structure for the alignment. In the rest of this work, we restrict ourselves to this space of derivations, which we characterize by its derivational entropy as described below.

Results and discussion

Algorithm

Let the set of all derivations for the input alignment be Φ. The total probability of the grammar producing the input string is:

T = d Φ p ( d ) = d Φ p G ( d ) p T ( d ) .
(14)

The computation of T is straightforward using the inside algorithm. The normalized probability of a derivation d is p Φ ( d ) = 1 T p ( d ) = 1 T p G ( d ) p T ( d ) . We now define the information entropy of the input alignment under the phylo-SCFG model as:

H Φ ( G ) = - d Φ p Φ ( d ) log 2 ( p Φ ( d ) ) .
(15)

Note that Equations 4 and 8 still hold when the set of derivations is restricted to a subset, as opposed to the entire space, so we can write the entropy as:

H Φ ( G ) = d Φ p ( d ) T log 2 T p G ( d ) p T ( d ) = log 2 ( T ) - 1 T d Φ p ( d ) log 2 ( p G ( d ) ) - 1 T d Φ p ( d ) log 2 ( p T ( d ) )
(16)

We now show how to express the entropy in terms of expected rule frequencies. Note that:

d Φ p ( d ) log 2 ( p G ( d ) ) = = A α log 2 ( P G ( A α ) ) E f ( A α )
(17)

which can be computed using the expected rule frequencies obtained from the inside-outside algorithm (cf. equations 7 and 8). This can be seen by noting that Equations 4 and 7 still hold when the set of derivations is restricted to a subset, as opposed to the entire space.

Furthermore, if 1 d ( i , j ) denotes the indicator function for whether the column pair (i, j) is emitted from a Type 2 rule (i.e. position i and j form a pair), and 1 s ( i ) denotes the indicator function for whether column i is emitted from a Type 1 rule (i.e. position i is unpaired), then:

d Φ p ( d ) log 2 ( p T ( d ) ) = = d Φ p ( d ) r a log 2 P T ( c | ċ ) f d ( r a ) + r b log 2 P T ( c , c | c , c ^ ) f d ( r b ) = i , j i j log 2 P T ( i , j | i , j ^ ) d Φ 1 d ( i , j ) p ( d ) + i log 2 P T ( i , | i ˙ ) d Φ 1 s ( i ) p ( d )
(18)

We observe that d Φ 1 d ( i , j ) p ( d ) is just the total probability under the model that positions i and j form a pair (i.e. they are emitted from rule type 2), and d Φ 1 s ( i ) p ( d ) is just the total probability under the model that position i is unpaired (i.e. it is emitted from rule type 1). The quantity ∑dΦp(d) log2(p T (d)) can therefore also be computed using the expected rule frequencies.

Once the values of the inside-outside variables have been calculated for an input string of length n, the expected rule frequencies can be computed in O(n) time for rules of Type 1, O(n2) time for rules of Type 2, and O(n3) time for rules of Type 3. As the time complexity of the inside-outside algorithm is also O(n3), the computation of the entropy over the possible derivations of the input string does not increase the time complexity of RNA secondary structure prediction.

Interpretation of the derivational entropy

The derivational entropy provides a measure for the "spread" of the probability distribution on possible secondary structures. For equiprobable events, information entropy increases logarithmically with the number of possible outcomes. It is clear, therefore, that the maximum derivational entropy increases with sequence length. It has been shown [18] that, assuming all nucleotide pairings are possible, the number of secondary structures S(l) of length l can be approximated for large l as:

S l 1 . 104 × l - 3 2 × 2 . 61 8 l .
(19)

The maximum derivational entropy is therefore expected to increase logarithmically with S l .

H max ( l ) 0 . 142 - 3 2 log 2 ( l ) + 1 . 388 l .
(20)

H max (l) provides an upper bound on the value of the information entropy for an RNA alignment of length l, and can aid the user in the interpretation of the entropy corresponding to a particular input alignment.

In practice, however, H max is rarely attained by nucleotide sequences. To obtain more intuition for the value of the derivational entropy, we generated random nucleotide sequences of varying lengths and nucleotide compositions, and computed the entropy of the probability distribution generated by PPfold for the single-sequence predictions, as a percentage of the theoretical H max (l) (Figure 1). Interestingly, we found that the entropies computed for these random sequences are remarkably stable at around 25-35% of H max (l) over a wide range of sequence lengths (> 30 nucleotides), with only a slight dependence on nucleotide composition. Particular entropy values can therefore be interpreted in relation to this; an entropy value of 25-35% of H max (l) suggests that the probability distribution for the input data is as "spread" over the structure space as it would be for a single random sequence of that length.

Figure 1
figure 1

The entropy of the structure probability distributions computed by PPfold, for random sequences of various lengths and nucleotide compositions. The nucleotide composition of each dataset is given in the legend. Each point represents the mean of the entropy values for 100 random sequences, with the error bars indicating the standard deviations.

Using information entropy to interpret low reliability scores

Derivational entropy is related to various reliability measures already reported by prediction programs. PPfold in particular computes the probability of a pair between two columns as the sum of the (normalized) expected frequencies of rules of Type 2 emitting that column pair:

P ( i , j ^ ) = N 1 c N 2 c O ( N 1 ) I ( N 2 ) P G ( N 1 c N 2 c ) P T ( i , j | i , j ^ ) .
(21)

The probability of column i remaining unpaired is P ( i ˙ ) = 1 - i , j i j P ( i , j ^ ) . These probabilities function as "reliability scores" for every predicted base-pair or unpaired nucleotide in the structure. The overall reliability score for the secondary structure can be computed as the average of the reliability scores of all positions.

Importantly, while the reliability scores depend both on the structures and their probabilities, the derivational entropy is only a function of probabilities, and does not depend on the similarity of the structures to each other. Derivational entropy therefore provides complementary information to reliability scores. For example, if the reliability scores predict a low accuracy, the entropy can help reveal the underlying reasons. A low reliability score can be observed in different situations, for example (a) if there is insufficient structure signal, so there are no structures of high probabilities and the probability distribution is "spread", or (b) if there are two or more possible (topologically different) structures of high probabilities, so the probability distribution has several "peaks". Entropy will be high in the first case, but low in the second case, and can therefore be used to distinguish the two situations from each other.

To illustrate this with a practical example, a PP-fold prediction of the secondary structure of the random nucleotide sequence:

GACCAAACGCAGCCAGCGTCACTGTAGGATTTAAA

ACCGAGGGAATGCCGTCAGTAGGGTCGGGTTTAAC

reveals that the underlying probability distribution has an entropy of 28.55 bits, with an average reliability score 0.65 for the final predicted structure. In comparison, the following combinatorial sequence of the same length:

GGGGAAACCCCAAAGGGGAAACCCCAAAGGGGAAA

CCCCAAAGGGGAAACCCCAAAGGGGAAACCCCAAA

shows a significantly lower entropy of 18.82 bits, at the same time as a low average reliability score of 0.56. Despite the low reliability scores in both cases, the entropy value correctly reveals that the combinatorial sequence has a relatively small number of very different secondary structures dominating the probability space, whereas the probabilities are more uniformly distributed over a large number of possible structures in the case of the random sequence.

To investigate if similar patterns could also be observed for alignments of longer biological sequences, we applied the same technique on a range of bacterial and eukaryotic 16S/18S rRNA alignments. The generation of the alignments is described in the Methods section. We plotted the entropy against the PPfold reliability scores, and colour-coded the data points after the accuracy of predictions. As Figure 2 shows, entropy can be used in conjunction with basepairing probabilities to evaluate RNA secondary structure prediction results even in the case of long biological sequences. In the cases where reliabilities are high and entropy is low, the probability space is dominated by a clearly defined set of similar structures, which are likely to be well predicted. In the cases where basepairing probabilities are low, a simultaneous high entropy implies that the underlying probability distribution lacks a clear signal (eg. in the case of folding just one sequence). By contrast, low reliabilities coupled to a low entropy suggest a distribution that has several competing structures dominating the probability space.

Figure 2
figure 2

Use of entropy in conjunction with reliability scores to characterise probability distributions on RNA structure space. (a) Prokaryotic alignments (H max ≈ 2102), (b) Eukaryotic alignments (H max ≈ 2471). The color scale reflects the accuracy of each prediction (F-measure, %). The outlier with the largest entropy value in each case corresponds to the structure prediction on a single sequence.

Relationship to prediction accuracy

An important question with respect to comparative RNA secondary structure prediction is how the accuracy of predictions varies with the quality of input alignment, and to what extent the accuracy of a predicted structure can be predicted. Reliability scores and entropy both measure variation in the secondary structure space, so both are expected to be correlated with prediction accuracy. We note, however, that a natural limitation of both entropy and reliability scores is that they are computed under the model, which effectively assumes that the model itself is an accurate description of the biological folding processes. If this is not the case, high confidence values computed under the model can still correspond to low prediction accuracies in reality.

Nevertheless, we compared how the accuracy of predictions correlates with both the average structure reliability scores and the information entropy, for all alignments in our dataset consisting of bacterial and eukaryotic 16S/18S rRNA alignments. The results are shown in Figure 3. As expected, both the PPfold reliability scores and entropy are correlated with prediction accuracy, for both bacterial and eukaryotic alignments. The correlations are stronger in the case of the bacterial alignments and weaker in the case of the eukaryotic alignments. In the case of the eukaryotic alignments, entropy appears to be slightly better correlated with prediction accuracy than PPfold reliability scores, although the difference is not statistically significant.

Figure 3
figure 3

Variation in accuracy (F-measure) correlated with (a) derivational entropy (as fraction of H max ) and (b) PPfold reliability scores, for prokaryotic and eukaryotic 16S/18S rRNA alignments.

We observe that despite the PPfold reliability scores generally suggest somewhat higher prediction accuracies than what was actually observed, they convey absolute information about the accuracy of predictions. Instead, entropy functions as a relative accuracy measure, when comparing several structure predictions for the same sequence. Entropy can, therefore, complement the currently existing measures for an increased understanding of RNA structure variability.

Lastly, we note that there is large variation in the reliability measures reported by different RNA structure prediction programs. By contrast, information entropy is a method-independent measure: for the same alignment, it will have the same, well-defined interpretation, regardless of the method producing the underlying probability distributions. Additionally, all classic information theoretic results can be applied to it. Information entropy can therefore be used to compare the behaviour of any secondary structure prediction methods that produce a probability distribution over RNA secondary structures, in a way that is not possible with currently existing methods.

Future perspectives include the computation of measures similar to entropy, such as the self-information of particular outcomes, or the Kullback-Leibner divergence of distributions to compare constrained and unconstrained models for RNA folding. We also expect that entropy may provide a number of other possible future applications in RNA secondary structure prediction.

Conclusions

The information entropy of the probability distribution generated by phylo-grammars can be computed efficiently from the inside-outside variables, and has been implemented as part of PPfold. Information entropy is a well-defined characteristic of the underlying probability distribution, which complements the reliability values already reported by algorithms for an increased understanding of RNA structure variability. It is also a method-independent measure of prediction certainty, providing theoretical advantages over existing methods.

Methods

Implementation

We have implemented the algorithm for the Knudsen-Hein (KH99) grammar [6] in PPfold [9]. PPfold has been written in Java 6.0 and is available as a standalone application. The rules of the KH99 grammar are as follows:

S L | L S L c | c F c F c F c | L S

We note that the KH99 grammar is not in double emission normal form, as it includes the rule S → L. Even though the grammar can be expressed in the desired form, adapting the algorithm to include this additional rule is both straightforward and highly efficient; this is therefore what we have implemented.

In the case of the KH99 grammar, there is a maximum of one bifurcating rule originating from each nonterminal symbol. It is also known that the expected frequency of a nonterminal symbol can be computed in O(n2) time for any SCFG, and the expected frequencies of rules from the same nonterminal symbol sum to the expected frequency of the nonterminal symbol. Hence, in the case of the KH99 grammar, the time complexity of the computation of the derivational entropy (given the inside-outside variables) could further be reduced to O(n2).

As described in the Results and Discussion section, the value of the entropy depends on the length of the alignments. Hence, small adaptations were made in the algorithm to be able to compare the entropies of alignments that include a particular sequence. The default option in PPfold is to remove columns where fewer than 75% of the sequences have nucleotides. In the case of entropy computation, this is replaced with removing only the columns where the selected sequence has gaps. This ensures that all alignments that include the selected sequence have an equal prediction length.

Test sequences and alignments

Random sequences of different nucleotide compositions were generated using the online FaBox tool [19].

For the generation of alignments, among families with an experimentally verified secondary structure in the Rfam database, we chose two families (RF01960 - Eukaryotic small subunit ribosomal RNA, and RF00177 - Bacterial small subunit ribosomal RNA), for which our initial tests indicated that a particularly wide range of structure prediction accuracies may be achieved depending on the choice on the sequences included in the alignment. Starting with a sequence of interest in both families, we constructed our datasets by randomly adding sequences from the family alignment one by one, up to a final size of maximum 15 sequences. For each alignment size (between 1 and 15 sequences in the alignment), the process was repeated 50 times. This way we obtained 1+14 × 50, not necessarily distinct cases per family, with 1-15 sequences each (including the starting sequence as a standalone case). The alignments of the selected sequences and the reference secondary structures thereof were adapted from those in Rfam, by deleting gap-only columns and any base pairs involved with those columns.

Comparing accuracies

Accuracies are reported in terms of the F-measure, which is the harmonic mean of the sensitivity and the positive predictive value (PPV) of the basepair (bp.) predictions, compared to the comparative (reference) structure. These quantities are defined as:

sensitivity = T P number of bp . in reference
(22)
PPV = T P number of bp . in prediction
(23)
F - measure = 2 × sensitivity × PPV sensitivity + PPV
(24)

where TP is the number of correctly predicted base-pairs.

References

  1. Griths-Jones S, Moxon S, Marshall M, Khanna A, Eddy SR, Bateman A: Rfam: annotating non-coding RNAs in complete genomes. Nucleic acids research. 2005, 33 (suppl 1): D121-D124.

    Google Scholar 

  2. Andronescu M, Bereg V, Hoos H, Condon A: RNA STRAND: The RNA Secondary Structure and Statistical Analysis Database. BMC Bioinformatics. 2008, 9: 340-10.1186/1471-2105-9-340.

    Article  PubMed Central  PubMed  Google Scholar 

  3. Zuker M, Stiegler P: Optimal computer folding of large RNA sequences using thermodynamics and auxiliary information. Nucleic Acids Research. 1981, 9: 133-148. 10.1093/nar/9.1.133.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  4. Markham NR, Zuker M, Keith JM, Walker JM: UN-AFold. 2008, Humana Press. Bioinformatics, 3-31. [Methods in Molecular Biology; SP: 3]

    Google Scholar 

  5. Hofacker I, Fontana W, Stadler P, Bonhoeer L, Tacker M, Schuster P: Fast folding and comparison of RNA secondary structures (The Vienna RNA Package). Chemical Monthly. 1994, 125 (2): 167-188. 10.1007/BF00818163. [SP: 167]

    Article  CAS  Google Scholar 

  6. Knudsen B, Hein J: RNA secondary structure prediction using stochastic context-free grammars and evolutionary history. Bioinformatics. 1999, 15: 446-454. 10.1093/bioinformatics/15.6.446.

    Article  CAS  PubMed  Google Scholar 

  7. Knudsen B, Hein J: Pfold: RNA secondary structure prediction using stochastic context-free grammars. Nucleic Acids Res. 2003, 31 (13): 3423-3428. 10.1093/nar/gkg614.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  8. Gardner P, Giegerich R: A comprehensive comparison of comparative RNA structure prediction approaches. BMC Bioinformatics. 2004, 5: 140-10.1186/1471-2105-5-140.

    Article  PubMed Central  PubMed  Google Scholar 

  9. Sukosd Z, Knudsen B, Vaerum M, Kjems J, Andersen E: Multithreaded comparative RNA secondary structure prediction using stochastic context-free grammars. BMC Bioinformatics. 2011, 12: 103-10.1186/1471-2105-12-103.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  10. Mathews D, Sabina J, Zuker M, Turne D: Expanded Sequence Dependence of Thermodynamic Parameters Improves Prediction of RNA Secondary Structure. J Mol Biol. 1999, 288: 911-940. 10.1006/jmbi.1999.2700.

    Article  CAS  PubMed  Google Scholar 

  11. Markham NR, Zuker M: UNAFold: software for nucleic acid folding and hybridization. Methods Mol Biol. 2008, 453: 3-31. 10.1007/978-1-60327-429-6_1.

    Article  CAS  PubMed  Google Scholar 

  12. Liu L, Chen SJ: Computing the conformational entropy for RNA folds. The Journal of chemical physics. 2010, 132 (23): 235104-10.1063/1.3447385.

    Article  PubMed Central  PubMed  Google Scholar 

  13. Kiryu H, Asai K: Rchange: Algorithms for computing energy changes of RNA secondary structures in response to base mutations. Bioinformatics. 2012, 28: 1093-1101. 10.1093/bioinformatics/bts097.

    Article  CAS  PubMed  Google Scholar 

  14. Wang Y, Manzour A, Shareghi P, Shaw TI, Li YW, Malmberg RL, Cai L: Stable stem enabled Shannon entropies distinguish non-coding RNAs from random backgrounds. Computational Advances in Bio and Medical Sciences (ICCABS), 2011 IEEE 1st International Conference on. 2011, 184-

    Chapter  Google Scholar 

  15. Lari K, Young SJ: The estimation of stochastic context-free grammars using the Inside-Outside algorithm. Computer Speech & Language. 1990, 4: 35-56.

    Article  Google Scholar 

  16. Nederhof M, Satta G: Kullback-Leibler distance between probabilistic context-free grammars and probabilistic finite automata. Computer Speech & Language, Association for Computational Linguistics. 2004, 71-es, [http://dl.acm.org/citation.cfm?id=1220366]

    Google Scholar 

  17. Anderson JWJ, Tataru P, Staines J, Hein J, Lyngso R: Evolving Stochastic Context-Free Grammars for RNA Secondary Structure Prediction. BMC Bioinformatics. 2012, 13: 78-10.1186/1471-2105-13-78.

    Article  CAS  Google Scholar 

  18. Stein PR, Waterman MS: On some new sequences generalizing the Catalan and Motzkin numbers. Discrete Mathematics. 1978, 26: 261-272.

    Article  Google Scholar 

  19. Villesen P: FaBox: an online toolbox for fasta sequences. Molecular Ecology Notes. 2007, 7 (6): 965-968. 10.1111/j.1471-8286.2007.01821.x.

    Article  CAS  Google Scholar 

Download references

Declarations

This research has been funded by the Danish Council for Strategic Research under the project #09-061856. JWJA would like to thank the EPSRC for funding. ÁN would like to thank BBSRC for continued funding through OCISB. CNSP is supported by Centre for Membrane Pumps in Cells and Disease (PUMPKIN), a Centre of Excellence funded by the Danish National Research Foundation. The publication costs for this article were also funded by PUMPKIN.

This article has been published as part of BMC Bioinformatics Volume 14 Supplement 2, 2013: Selected articles from the Eleventh Asia Pacific Bioinformatics Conference (APBC 2013): Bioinformatics. The full contents of the supplement are available online at http://www.biomedcentral.com/bmcbioinformatics/supplements/14/S2.

Author information

Authors and Affiliations

Authors

Corresponding author

Correspondence to Zsuzsanna Sükösd.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

ZS designed the algorithm with the help of BK and CNSP, implemented it and wrote the manuscript. JWJA and ÁN provided testing data, participated in the testing, and helped with writing the manuscript. CNSP and JK supervised the project, critically revised the manuscript and provided funding. All authors read and approved the final manuscript.

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an open access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Sükösd, Z., Knudsen, B., Anderson, J.W. et al. Characterising RNA secondary structure space using information entropy. BMC Bioinformatics 14 (Suppl 2), S22 (2013). https://doi.org/10.1186/1471-2105-14-S2-S22

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/1471-2105-14-S2-S22

Keywords