Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Data structures for bioinformatics [closed]

What are some data structures that should be known by somebody involved in bioinformatics? I guess that anyone is supposed to know about lists, hashes, balanced trees, etc., but I expect that there are domain specific data structures. Is there any book devoted to this subject?

like image 569
lmsasu Avatar asked Nov 30 '10 07:11

lmsasu


1 Answers

The most fundamental data structure used in bioinformatics is string. There are also a whole range of different data structures representing strings. And algorithms like string matching are based on the efficient representation/data structures.

A comprehensive work on this is Dan Gusfield's Algorithms on Strings, Trees and Sequences

like image 187
Yin Zhu Avatar answered Oct 01 '22 20:10

Yin Zhu