Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Do you know any good literature and/or tutorials about how to implement HMM in python, R (Bioconductor)? (especially for sequence analysis)

share|improve this question
Try asking on stats.stackexchange.com - or a mod can maybe move this q there. – Spacedman Sep 29 '11 at 6:52

closed as not constructive by agf, Dirk Eddelbuettel, joran, Spacedman, Graviton Sep 29 '11 at 10:25

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

2 Answers

There is the HMM package on CRAN, which might be a good place to start.

http://cran.at.r-project.org/web/packages/HMM/index.html

This is easily found from R itself:

RSiteSearch("HMM")
share|improve this answer

GHMM for python has a tutorial, but it's short and they admit that "Currently, the GHMM is utterly lacking in documentation."

I like the Rabiner paper.

I have a technical report on the use of HMM for genetic mapping.

I recommend reading a bit of Rabiner and then implementing something. The forward/backward equations are just a few lines.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.