[BioPython] Questions regarding different modules

Jeffrey Chang jchang@smi.stanford.edu
Fri, 17 Jan 2003 14:39:55 -0800


On Fri, Jan 17, 2003 at 03:39:50PM +0100, Andreas Kuntzagk wrote:
> - I could not understand the purpose of Decode.py
> - Whats the purpose of Bio.GA, Parsers, SVDSuperimposer, Search?

Parsers is just a directory to hold spark.py, which is used to parse
GenBank locations.


> - Is Bio.expressions obsolete (seems to contain older versions of the 
>   regular expressions for the various formats)?

Not obsolete, but incomplete.  That's the basis of code that will
auto-detect different file formats and automatically choose a parser
for your file format.  The expressions in there need to be filled out
somewhat.


> - What means "trie" in triefind? I could not find it in my dictionary,
>   but assume it should be "tree"?

It's a data structure for efficiently storing strings that might have
common prefixes, e.g. an english dictionary:
http://www.nist.gov/dads/HTML/trie.html

Hope that helps!

Jeff