Literature DB >> 16171529

A linear memory algorithm for Baum-Welch training.

István Miklós1, Irmtraud M Meyer.   

Abstract

BACKGROUND: Baum-Welch training is an expectation-maximisation algorithm for training the emission and transition probabilities of hidden Markov models in a fully automated way. It can be employed as long as a training set of annotated sequences is known, and provides a rigorous way to derive parameter values which are guaranteed to be at least locally optimal. For complex hidden Markov models such as pair hidden Markov models and very long training sequences, even the most efficient algorithms for Baum-Welch training are currently too memory-consuming. This has so far effectively prevented the automatic parameter training of hidden Markov models that are currently used for biological sequence analyses.
RESULTS: We introduce the first linear space algorithm for Baum-Welch training. For a hidden Markov model with M states, T free transition and E free emission parameters, and an input sequence of length L, our new algorithm requires O(M) memory and O(LMTmax (T + E)) time for one Baum-Welch iteration, where Tmax is the maximum number of states that any state is connected to. The most memory efficient algorithm until now was the checkpointing algorithm with O(log(L)M) memory and O(log(L)LMTmax) time requirement. Our novel algorithm thus renders the memory requirement completely independent of the length of the training sequences. More generally, for an n-hidden Markov model and n input sequences of length L, the memory requirement of O(log(L)L(n-1) M) is reduced to O(L(n-1) M) memory while the running time is changed from O(log(L)Ln MTmax + Ln(T + E)) to O(Ln MTmax (T + E)). An added advantage of our new algorithm is that a reduced time requirement can be traded for an increased memory requirement and vice versa, such that for any c e {1, ..., (T + E)}, a time requirement of Ln MTmax c incurs a memory requirement of L(n-1) M(T + E - c).
CONCLUSION: For the large class of hidden Markov models used for example in gene prediction, whose number of states does not scale with the length of the input sequence, our novel algorithm can thus be both faster and more memory-efficient than any of the existing algorithms.

Entities:  

Mesh:

Year:  2005        PMID: 16171529      PMCID: PMC1262623          DOI: 10.1186/1471-2105-6-231

Source DB:  PubMed          Journal:  BMC Bioinformatics        ISSN: 1471-2105            Impact factor:   3.169


Background

Hidden Markov Models (HMMs) are widely used in Bioinformatics [1], for example, in protein sequence alignment, protein family annotation [2,3] and gene-finding [4,5]. When an HMM consisting of M states is used to annotate an input sequence, its predictions crucially depend on its set of emission probabilities ε and transition probabilities . This is for example the case for the state path with the highest overall probability, the so-called optimal state path or Viterbi path [6], which is often reported as the predicted annotation of the input sequence. When a new HMM is designed, it is usually quite easy to define its states and the transitions between them as these typically closely reflect the underlying problem. However, it can be quite difficult to assign values to its emission probabilities ε and transition probabilities . Ideally, they should be set up such that the model's predictions would perfectly reproduce the known annotation of a large and diverse set of input sequences. The question is thus how to derive the best set of transition and emission probabilities from a given training set of annotated sequences. Two main scenarios have to be distinguished [1]: (1) If we know the optimal state paths that correspond to the known annotation of the training sequences, the transition and emission probabilities can simply be set to the respective count frequencies within these optimal state paths, i.e. to their maximum likelihood estimators. If the training set is small or not diverse enough, pseudo-counts have to be added to avoid over-fitting. (2) If we do not know the optimal state paths of the training sequences, either because their annotation is unknown or because their annotation does not unambiguously define a state path in the HMM, we can employ an expectation maximisation (EM) algorithm [7] such as the Baum-Welch algorithm [8] to derive the emission and transition probabilities in an iterative procedure which increases the overall log likelihood of the model in each iteration and which is guaranteed to converge at least to a local maximum. As in case (1), pseudo-counts or Dirichlet priors can be added to avoid over-fitting when the training set is small or not diverse enough.

Methods and results

Baum-Welch training

The Baum-Welch algorithm defines an iterative procedure in which the emission and transition probabilities in iteration n + 1 are set to the number of times each transition and emission is expected to be used when analysing the training sequences with the set of emission and transition probabilities derived in the previous iteration n. Let denote the transition probability for going from state i to state j in iteration n, the emission probability for emitting letter y in state i in iteration n, P(X) the probability of sequence X, and xthe kth letter in input sequence X which has length L. We also define Xas the sequence of letters from the beginning of sequence X up to sequence position k, (x1, ...x). Xis defined as the sequence of letters from sequence position k + 1 to the end of the sequence, (x, ...x). For a given set of training sequences, S, the expectation maximisation update for transition probability , can then be written as The superfix n on the quantities on the right hand side indicates that they are based on the transition probabilities and emission probabilities of iteration n. f(X, i): = P(x1, ...x, s(x) = i) is the so-called forward probability of the sequence up to and including sequence position k, requiring that sequence letter xis read by state i. It is equal to the sum of probabilities of all state paths that finish in state i at sequence position k. The probability of sequence X, P(X), is therefore equal to f(X, End). b(X, i): = P(x, ...x|s(x) = i) is the so-called backward probability of the sequence from sequence position k + 1 to the end, given that the letter at sequence position k, x, is read by state i. It is equal to the sum of probabilities of all state paths that start in state i at sequence position k. For a given set of training sequences, S, the expectation maximisation update for emission probability , , is δ is the usual delta function with = 1 if x= y and = 0 if x≠ y. As before, the superfix n on the quantities on the right hand side indicates that they are calculated using the transition probabilities and emission probabilities of iteration n. The forward and backward probabilities f(X, i) and b(X, i) can be calculated using the forward and backward algorithms [1] which are introduced in the following section.

Baum-Welch training using the forward and backward algorithm

The forward algorithm proposes a procedure for calculating the forward probabilities f(X, i) in an iterative way. f(X, i) is the sum of probabilities of all state paths that finish in state i at sequence position k. The recursion starts with the initialisation where Start is the number of the start state in the HMM. The recursion proceeds towards higher sequence positions and terminates with where End is the number of the end state in the HMM. The recursion can be implemented as a dynamic programming procedure which works its way through a two-dimensional matrix, starting at the start of the sequence in the Start state and finishing at the end of the sequence in the End state of the HMM. The backward algorithm calculates the backward probabilities b(X, i) in a similar iterative way. b(X, i) is the sum of probabilities of all state paths that start in state i at sequence position k. Opposed to the forward algorithm the backward algorithm starts at the end of the sequence in the End state and finishes at the start of the sequence in the Start state of the HMM. The backward algorithm starts with the initialisation and continues towards lower sequence positions with the recursion and terminates with As can be seen in the recursion steps of the forward and backward algorithms described above, the calculation of f(X, i) requires at most Tpreviously calculated elements f(X, j) for j ∈ {1, ..M}. Tis the maximum number of states that any state of the model is connected to. Likewise, the calculation of b(X, i) refers to at most Telements b(X, j) for j ∈ {1, ..M}. In order to continue the calculation of the forward and backward values f(X, i) and b(X, i) for all states i ∈ {1, ..M} along the entire sequence, we thus only have to memorise M elements.

Baum-Welch training using the checkpointing algorithm

Unit now, the checkpointing algorithm [11-13] was the most efficient way to perform Baum-Welch training. The basic idea of the checkpointing algorithm is to perform the forward and backward algorithm by memorising the forward and backward values only in columns along the sequence dimension of the dynamic programming table. The checkpointing algorithm starts with the forward algorithm, retaining only the forward values in columns. These columns partition the dynamic programming table into separate fields. The checkpointing algorithm then invokes the backward algorithm which memorises the backward values in a strip of length as it moves along the sequence. When the backward calculation reaches the boundary of one field, the pre-calculated forward values of the neighbouring checkpointing column are used to calculate the corresponding forward values for that field. The forward and backward values of that field are then available at the same time and are used to calculate the corresponding values for the EM update. The checkpointing algorithm can be further refined by using embedded checkpoints. With an embedding level of k, the forward values in columns of the initial calculation are memorised, thus defining long fields. When the memory-sparse calculation of the backward values reaches the field in question, the forward algorithm is invoked again to calculate the forward values for additional columns within that field. This procedure is iterated k times within the thus emerging fields. In the end, for each of the -long k-sub-fields, the forward and backward values are simultaneously available and are used to calculate the corresponding values for the EM update. The time complexity of this algorithm for one Baum-Welch iteration and a given training sequence of length L is O(kLMT+ L(T + E)), since k forward and 1 backward algorithms have to be invoked, and the memory complexity is . For k = log(L), this amounts to a time requirement of O(log(L)LMT+ L(T + E)) and a memory requirement of O(log(L)M), since = e.

Baum-Welch training using the new algorithm

It is not trivial to see that the quantities and of Equations 1 and 2 can be calculated in an even more memory-sparse way as both, the forward and the corresponding backward probabilities are needed at the same time in order to calculate the terms in and in of Equations 1 and 2. A calculation of these quantities for each sequence position using a memory-sparse implementation (that would memorise only M values at a time) both for the forward and backward algorithm would require L-times more time, i.e. significantly more time. Also, an algorithm along the lines of the Hirschberg algorithm [9,10] cannot be applied as we cannot halve the dynamic programming table after the first recursion. We here propose a new algorithm to calculate the quantities and which are required for Baum-Welch training. Our algorithm requires O(M) memory and O(LMT(T + E)) time rather than O(log(L)M) memory and O(log(L{LMT+ L(T + E)) time. The trick for coming up with a memory efficient algorithm is to realise that • and in Equations 1 and 2 can be interpreted as a weighted sum of probabilities of state paths that satisfy certain constraints and that • the weight of each state path is equal to the number of times that the constraint is fulfilled. For example, in the numerator in Equation 1 is the weighted sum of probabilities of state paths for sequence X that contain at least one i → j transition, and the weight of each such state path in the sum is the number of times this transition occurs in the state path. We now show how in Equation 1 can be calculated in O(M) memory and O(LMT) time. As the superfix n is only there to remind us that the calculation of is based on the transition and emission probabilities of iteration n and as this index does not change in the calculation of , we discard it for simplicity sake in the following. Let t(X, l) denote the weighted sum of probabilities of state paths that finish in state l at sequence position k of sequence X and that contain at least one i → j transition, where the weight for each state path is equal to its number of i → j transitions. Theorem 1: The following algorithm calculates t(X) in O(M) memory and O(LMT) time. t(X) is the weighted sum of probabilities of all state paths for sequence X that have at least one i → j transition, where the weight for each state path is equal to its number of i → j transitions. The algorithm starts with the initialisation and proceeds via the following recursion and finishes with Proof: (1) It is obvious that the recursion requires only O(M) memory as the calculation of all f(X, m) values with m ∈ {1, ..M} requires only access to the M previous f(X, n) values with n ∈ {1, ..M}. Likewise, the calculations of all t(X, m) values with m ∈ {1, ..M} refer only to M elements t(X, n) with n ∈ {1, ..M}. We therefore have to remember only a thin "slice" of tand f values at sequence position k in order to be able to calculate the tand f values for the next sequence position k + 1. The time requirement to calculate tis O(LMT): for every sequence position and for every state in the HMM, we have to sum at most Tterms in order to calculate the backward and forward terms. (2) The f(X, m) values are identical to the previously defined forward probabilities and are calculated in the same way as in the forward algorithm. (3) We now prove by induction that t(X, l) is equal to the weighted sum of probabilities of state paths that have at least one i → j transition and that finish at sequence position k in state l, the weight of each state path being equal to its number of i → j transitions. Initialisation step (sequence position k = 0): t(X0, m) = 0 is true as the sum of probabilities of state paths that finish in state m at sequence position 0 and that have at least one i → j transition is zero. Induction step k → k + 1: We now show that if Equation 3 is true for sequence position k, it is also true for k + 1. We have to distinguish two cases: (i) case m = j: The first term, see right hand side of 5, is the sum of probabilities of state paths that finish at sequence position k + 1 and whose last transition is from i → j. The second term, see 6, is the sum of probabilities of state paths that finish at sequence position k + 1 and that already have at least one i → j transition. Note that the term in 6 also contains a contribution for n = i. This ensures that the weight of those state path that already have at least one i → j transition is correctly increased by 1. The sum, t(X, m), is therefore the weighted sum of probabilities of state paths that finish in sequence position k + 1 and contain at least one i → j transition. Each state path's weight in the sum is equal to its number of i → j transitions. (ii) case m ≠ j: The expression on the right hand side is the weighted sum of probabilities of state paths that finish in sequence position k + 1 and contain at least one i → j transition. We have therefore shown that if Equation 3 is true for sequence position k, it is also true for sequence position k + 1. This concludes the proof of theorem 1.     □ It is easy to show that e(y, X) in Equation 2 can also be calculated in O(M) memory and O(LMT) time in a similar way as t(X). Let e(y, X, l) denote the weighted sum of probabilities of state paths that finish at sequence position k in state l and for which state i reads letter y at least once, the weight of each state path being equal to the number of times state i reads letter y. As in the calculation of t(X) we again omit the superfix n as the calculation of e(y, X) is again entirely based on the transition and emission probabilities of iteration n. Theorem 2: e(y, X) can be calculated in O(M) memory and O(LMT) time using the following algorithm. e(y, X) is the weighted sum of probabilities of state paths for sequence X that read letter y in state i at least once, the weight of each state path being equal to the number of times letter y is read by state i. Initialisation step: Recursion: Termination step: Proof: The proof is strictly analogous to the proof of theorem 1. The above theorems have shown that t(X) and e(y, X) can each be calculated in O(M) memory and O(LMT) time. As there are T transition parameters and E emission parameters to be calculated in each Baum-Welch iteration, and as these T + E values can be calculated independently, the time and memory requirements for each iteration and a set of training sequences whose sum of sequence lengths is L using our new algorithm are • O(M) memory and O(LMT(T + E)) time, if all parameter estimates are calculated consecutively • O(M(T + E)) memory and O(LMT) time, if all parameter estimates are calculated in parallel • more generally, O(Mc) memory and O(LMT(T + E - c)) time for any c ∈ {1,..., (T + E)}, if c of T + E parameters are to be calculated in parallel Note that the calculation of P(X) is a by-product of each t(X) and each e(y, X) calculation, see Equations 4 and 7, and that T is equal to the number of free transition parameters in the HMM which is usually smaller than the number of transitions probabilities. Likewise, E is the number of free emission parameters in the HMM which may differ from the number of emission probabilities when the probabilities are parametrised.

Discussion and Conclusion

We propose the first linear-memory algorithm for Baum-Welch training. For a hidden Markov model with M states, T free transition and E free emission parameters, and an input sequence of length L, our new algorithm requires O(M) memory and O(LMT(T + E)) time for one Baum-Welch iteration as opposed to O(log(L)M) memory and O(log(L)LMT+ L(T + E)) time using the checkpointing algorithm [11-13], where Tis the maximum number of states that any state is connected to. Our algorithm can be generalised to pair-HMMs and, more generally, n-HMMs that analyse n input sequences at a time in a straightforward way. In the n-HMM case, our algorithm reduces the memory and time requirements from O(log(L)LM) memory and O(log(L)LMT+ L(T + E)) time to O(LM) memory and O(LMT(T + E))) time. An added advantage of our new algorithm is that a reduced time requirement can be traded for an increased memory requirement and vice versa, such that for any c ∈ {1,..., (T + E)}, a time requirement of LMTc incurs a memory requirement of LM(T + E - c). For HMMs, our novel algorithm renders the memory requirement completely independent of the sequence length. Generally, for n-HMMs and all T + E parameters being estimated consecutively, our novel algorithm reduces the memory requirement by a factor log(L) and the time requirement by a factor log(L)/(T +E) + 1/(MT). For all hidden Markov models whose number of states does not depend on the length of the input sequence, this thus amounts to a significantly reduced memory requirement and – in cases where the number of free parameters and states of the model (i.e. T + E) is smaller than the logarithm of sequence lengths – even to a reduced time requirement. For example, for an HMM that is used to predict human genes, the training sequences have a mean length of at least 2.7·104 bp which is the average length of a human gene [14]. Using our new algorithm, the memory requirement for Baum-Welch training is reduced by a factor of about 28 ≈ e* In (2.7·104) with respect to the most memory-sparse version of the checkpointing algorithm. Our new algorithm makes use of the fact that the numerators and denominators of Equations 1 and 2 can be decomposed in a smart way that allows a very memory-sparse calculation. This calculation requires only one uni-directional scan along the sequence rather than one or more bi-directional scans, see Figure 1. This property gives our algorithm the added advantage that it is easier to implement as it does not require programming techniques like recursive functions or checkpoints.
Figure 1

Pictorial description of the new algorithm for pair-HMMs. This figure shows a pictorial description of the differences between the forward-backward algorithm (a) and our new algorithm (b) for the Baum-Welch training of a pair-HMM. Each large rectangle corresponds to the projection of the three-dimensional dynamic programming matrix (spanned by the two input sequences X and Y and the states of the HMM) onto the sequence plane. (a) shows how the numerator in Equation 1 is calculated at the pair of sequence positions indicated by the black square using the standard forward and backward algorithm. (b) shows how our algorithm simultaneously calculates a strip of forward values f(X, Y, m) and a strip of t(XY, m) values at sequence position k in sequence X in order to estimate tin Equation 1.

Pictorial description of the new algorithm for pair-HMMs. This figure shows a pictorial description of the differences between the forward-backward algorithm (a) and our new algorithm (b) for the Baum-Welch training of a pair-HMM. Each large rectangle corresponds to the projection of the three-dimensional dynamic programming matrix (spanned by the two input sequences X and Y and the states of the HMM) onto the sequence plane. (a) shows how the numerator in Equation 1 is calculated at the pair of sequence positions indicated by the black square using the standard forward and backward algorithm. (b) shows how our algorithm simultaneously calculates a strip of forward values f(X, Y, m) and a strip of t(XY, m) values at sequence position k in sequence X in order to estimate tin Equation 1. Baum-Welch training is only guaranteed to converge to a local optimum. Other optimisation techniques have been developed in order to find better optima. One of the most successful methods is simulated annealing (SA) [1,15]. SA is essentially a Markov chain Monte Carlo (MCMC) in which the target distribution is sequentially changed such that the distribution gets eventually trapped in a local optimum. One can give proposal steps a higher probability as they are approaching locally better points. This can increase the performance of the MCMC method, especially in higher dimensional spaces [16]. One could base the candidate distribution on the expectations such that proposals are more likely to be made near the EM updates (calculated with our algorithm). There is no need to update all the parameters in one MCMC step, modifying a random subset of parameters yields also an irreducible chain. The last feature makes SA significantly faster than Baum-Welch updates as we need to calculate expectations only for a few parameters using SA. In that way, our algorithm could be used for highly efficient parameter training: using our algorithm to calculate the EM updates in only linear space and using SA instead of the Baum-Welch algorithm for fast parameter space exploration. Typical biological sequence analyses these days often involve complicated hidden Markov models such as pair-HMMs or long input sequences and we hope that our novel algorithm will make Baum-Welch parameter training an appealing and practicable option. Other commonly employed methods in computer science and Bioinformatics are stochastic context free grammars (SCFGs) which need O(L2 M) memory to analyse an input sequence of length L with a grammar having M non-terminal symbols [1]. For a special type of SCFGs, known as covariance models in Bioinformatics, M is comparable to L, hence the memory requirement is O(L3). This has recently been reduced to O(L2 log(L)) using a divide-and-conquer technique [17], which is the SCFG analogue of the Hirschberg algorithm for HMMs [9]. However, as the states of SCFGs can generally impose long-range correlations between any pair of sequence positions, it seems that our algorithm cannot be applied to SCFGs in the general case.

Authors' contributions

The algorithm is the result of a brainstorming session of the authors on the Genome campus bus back to Cambridge city centre on the evening of the 17th February 2005. Both authors contributed equally.
  10 in total

1.  Optimizing reduced-space sequence analysis.

Authors:  R Wheeler; R Hughey
Journal:  Bioinformatics       Date:  2000-12       Impact factor: 6.937

2.  Initial sequencing and analysis of the human genome.

Authors:  E S Lander; L M Linton; B Birren; C Nusbaum; M C Zody; J Baldwin; K Devon; K Dewar; M Doyle; W FitzHugh; R Funke; D Gage; K Harris; A Heaford; J Howland; L Kann; J Lehoczky; R LeVine; P McEwan; K McKernan; J Meldrim; J P Mesirov; C Miranda; W Morris; J Naylor; C Raymond; M Rosetti; R Santos; A Sheridan; C Sougnez; Y Stange-Thomann; N Stojanovic; A Subramanian; D Wyman; J Rogers; J Sulston; R Ainscough; S Beck; D Bentley; J Burton; C Clee; N Carter; A Coulson; R Deadman; P Deloukas; A Dunham; I Dunham; R Durbin; L French; D Grafham; S Gregory; T Hubbard; S Humphray; A Hunt; M Jones; C Lloyd; A McMurray; L Matthews; S Mercer; S Milne; J C Mullikin; A Mungall; R Plumb; M Ross; R Shownkeen; S Sims; R H Waterston; R K Wilson; L W Hillier; J D McPherson; M A Marra; E R Mardis; L A Fulton; A T Chinwalla; K H Pepin; W R Gish; S L Chissoe; M C Wendl; K D Delehaunty; T L Miner; A Delehaunty; J B Kramer; L L Cook; R S Fulton; D L Johnson; P J Minx; S W Clifton; T Hawkins; E Branscomb; P Predki; P Richardson; S Wenning; T Slezak; N Doggett; J F Cheng; A Olsen; S Lucas; C Elkin; E Uberbacher; M Frazier; R A Gibbs; D M Muzny; S E Scherer; J B Bouck; E J Sodergren; K C Worley; C M Rives; J H Gorrell; M L Metzker; S L Naylor; R S Kucherlapati; D L Nelson; G M Weinstock; Y Sakaki; A Fujiyama; M Hattori; T Yada; A Toyoda; T Itoh; C Kawagoe; H Watanabe; Y Totoki; T Taylor; J Weissenbach; R Heilig; W Saurin; F Artiguenave; P Brottier; T Bruls; E Pelletier; C Robert; P Wincker; D R Smith; L Doucette-Stamm; M Rubenfield; K Weinstock; H M Lee; J Dubois; A Rosenthal; M Platzer; G Nyakatura; S Taudien; A Rump; H Yang; J Yu; J Wang; G Huang; J Gu; L Hood; L Rowen; A Madan; S Qin; R W Davis; N A Federspiel; A P Abola; M J Proctor; R M Myers; J Schmutz; M Dickson; J Grimwood; D R Cox; M V Olson; R Kaul; C Raymond; N Shimizu; K Kawasaki; S Minoshima; G A Evans; M Athanasiou; R Schultz; B A Roe; F Chen; H Pan; J Ramser; H Lehrach; R Reinhardt; W R McCombie; M de la Bastide; N Dedhia; H Blöcker; K Hornischer; G Nordsiek; R Agarwala; L Aravind; J A Bailey; A Bateman; S Batzoglou; E Birney; P Bork; D G Brown; C B Burge; L Cerutti; H C Chen; D Church; M Clamp; R R Copley; T Doerks; S R Eddy; E E Eichler; T S Furey; J Galagan; J G Gilbert; C Harmon; Y Hayashizaki; D Haussler; H Hermjakob; K Hokamp; W Jang; L S Johnson; T A Jones; S Kasif; A Kaspryzk; S Kennedy; W J Kent; P Kitts; E V Koonin; I Korf; D Kulp; D Lancet; T M Lowe; A McLysaght; T Mikkelsen; J V Moran; N Mulder; V J Pollara; C P Ponting; G Schuler; J Schultz; G Slater; A F Smit; E Stupka; J Szustakowki; D Thierry-Mieg; J Thierry-Mieg; L Wagner; J Wallis; R Wheeler; A Williams; Y I Wolf; K H Wolfe; S P Yang; R F Yeh; F Collins; M S Guyer; J Peterson; A Felsenfeld; K A Wetterstrand; A Patrinos; M J Morgan; P de Jong; J J Catanese; K Osoegawa; H Shizuya; S Choi; Y J Chen; J Szustakowki
Journal:  Nature       Date:  2001-02-15       Impact factor: 49.962

3.  Comparative ab initio prediction of gene structures using pair HMMs.

Authors:  Irmtraud M Meyer; Richard Durbin
Journal:  Bioinformatics       Date:  2002-10       Impact factor: 6.937

4.  Gene structure conservation aids similarity based gene prediction.

Authors:  Irmtraud M Meyer; Richard Durbin
Journal:  Nucleic Acids Res       Date:  2004-02-04       Impact factor: 16.971

5.  Optimization by simulated annealing.

Authors:  S Kirkpatrick; C D Gelatt; M P Vecchi
Journal:  Science       Date:  1983-05-13       Impact factor: 47.728

6.  Reduced space hidden Markov model training.

Authors:  C Tarnas; R Hughey
Journal:  Bioinformatics       Date:  1998-06       Impact factor: 6.937

7.  Reduced space sequence alignment.

Authors:  J A Grice; R Hughey; D Speck
Journal:  Comput Appl Biosci       Date:  1997-02

8.  Optimal alignments in linear space.

Authors:  E W Myers; W Miller
Journal:  Comput Appl Biosci       Date:  1988-03

9.  Hidden Markov models in computational biology. Applications to protein modeling.

Authors:  A Krogh; M Brown; I S Mian; K Sjölander; D Haussler
Journal:  J Mol Biol       Date:  1994-02-04       Impact factor: 5.469

10.  A memory-efficient dynamic programming algorithm for optimal alignment of a sequence to an RNA secondary structure.

Authors:  Sean R Eddy
Journal:  BMC Bioinformatics       Date:  2002-07-02       Impact factor: 3.169

  10 in total
  8 in total

1.  Efficient algorithms for training the parameters of hidden Markov models using stochastic expectation maximization (EM) training and Viterbi training.

Authors:  Tin Y Lam; Irmtraud M Meyer
Journal:  Algorithms Mol Biol       Date:  2010-12-09       Impact factor: 1.405

2.  Clustering ionic flow blockade toggles with a mixture of HMMs.

Authors:  Alexander Churbanov; Stephen Winters-Hilt
Journal:  BMC Bioinformatics       Date:  2008-08-12       Impact factor: 3.169

3.  Duration learning for analysis of nanopore ionic current blockades.

Authors:  Alexander Churbanov; Carl Baribault; Stephen Winters-Hilt
Journal:  BMC Bioinformatics       Date:  2007-11-01       Impact factor: 3.169

4.  Prepatterning of differentiation-driven nuclear lamin A/C-associated chromatin domains by GlcNAcylated histone H2B.

Authors:  Torunn Rønningen; Akshay Shah; Anja R Oldenburg; Kristin Vekterud; Erwan Delbarre; Jan Øivind Moskaug; Philippe Collas
Journal:  Genome Res       Date:  2015-09-10       Impact factor: 9.043

5.  A lipodystrophy-causing lamin A mutant alters conformation and epigenetic regulation of the anti-adipogenic MIR335 locus.

Authors:  Anja Oldenburg; Nolwenn Briand; Anita L Sørensen; Inswasti Cahyani; Akshay Shah; Jan Øivind Moskaug; Philippe Collas
Journal:  J Cell Biol       Date:  2017-07-27       Impact factor: 10.539

6.  HMMCONVERTER 1.0: a toolbox for hidden Markov models.

Authors:  Tin Yin Lam; Irmtraud M Meyer
Journal:  Nucleic Acids Res       Date:  2009-11       Impact factor: 16.971

7.  Memory-efficient dynamic programming backtrace and pairwise local sequence alignment.

Authors:  Lee A Newberg
Journal:  Bioinformatics       Date:  2008-06-16       Impact factor: 6.937

8.  Implementing EM and Viterbi algorithms for Hidden Markov Model in linear memory.

Authors:  Alexander Churbanov; Stephen Winters-Hilt
Journal:  BMC Bioinformatics       Date:  2008-04-30       Impact factor: 3.169

  8 in total

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