Calculating PSSM probabilities with lazy dynamic programming

  • Authors:
  • Ketil Malde;Robert Giegerich

  • Affiliations:
  • Department of Informatics, University of Bergen, Bergen, Norway (e-mail: ketil@ii.uib.no);Faculty of Technology, University of Bielefeld, Bielefeld, Germany (e-mail: robert@techfak.uni-bielefeld.de)

  • Venue:
  • Journal of Functional Programming
  • Year:
  • 2006

Quantified Score

Hi-index 0.00

Visualization

Abstract

Position-specific scoring matrices are one way to represent approximate string patterns, which are commonly encountered in the field of bioinformatics. An important problem that arises with their application is calculating the statistical significance of matches. We review the currently most efficient algorithm for this task, and show how it can be implemented in Haskell, taking advantage of the built-in non-strictness of the language. The resulting program turns out to be an instance of dynamic programming, using lists rather the typical dynamic programming matrix.