Trees | Indices | Help |
---|
|
Dictionary like indexing of sequence files (PRIVATE).
You are not expected to access this module, or any of its code, directly. This is all handled internally by the Bio.SeqIO.index(...) function which is the public interface for this functionality.
The basic idea is that we scan over a sequence file, looking for new record markers. We then try and extract the string that Bio.SeqIO.parse/read would use as the record id, ideally without actually parsing the full record. We then use a subclassed Python dictionary to record the file offset for the record start against the record id.
Note that this means full parsing is on demand, so any invalid or problem record may not trigger an exception until it is accessed. This is by design.
This means our dictionary like objects have in memory ALL the keys (all the record identifiers), which shouldn't be a problem even with second generation sequencing. If this is an issue later on, storing the keys and offsets in a temp lookup file might be one idea (e.g. using SQLite or an OBDA style index).
|
|||
_IndexedSeqFileDict Read only dictionary interface to a sequential sequence file. |
|||
_SQLiteManySeqFilesDict Read only dictionary interface to many sequential sequence files. |
|||
SeqFileRandomAccess | |||
SffRandomAccess Random access to a Standard Flowgram Format (SFF) file. |
|||
SffTrimedRandomAccess | |||
SequentialSeqFileRandomAccess | |||
GenBankRandomAccess Indexed dictionary like access to a GenBank file. |
|||
EmblRandomAccess Indexed dictionary like access to an EMBL file. |
|||
SwissRandomAccess Random access to a SwissProt file. |
|||
UniprotRandomAccess Random access to a UniProt XML file. |
|||
IntelliGeneticsRandomAccess Random access to a IntelliGenetics file. |
|||
TabRandomAccess Random access to a simple tabbed file. |
|||
FastqRandomAccess Random access to a FASTQ file (any supported variant). |
|
|||
_FormatToRandomAccess =
|
|||
__package__ =
|
|
_FormatToRandomAccess
|
Trees | Indices | Help |
---|
Generated by Epydoc 3.0.1 on Sat Aug 20 10:37:29 2011 | http://epydoc.sourceforge.net |