public class NIODataStoreFactory extends Object implements DataStoreFactory
Builder for a datastore that has no practical file size limit.
This implementation of the data store factory uses longs as indecies internaly, so can be used with files exceeding 2 gigs in size.
The data store file has the following structure.
file: header, hash table, nameTable, hitTable header: long hashTablePos, // byte offset in file long hitTablePos, // byte offset in file long nameTablePos, // byte offset in file int wordLength, int serializedPackingLength, byte[] serializedPacking hashTable: long hashTableLength, long[hashTableLength] hits // byte offset into hitTable nameTable: int nameTableSize, // size in bytes (short nameLength, char[nameLength] name)[nameTableSize] names hitTable: long hitTableSize, // size in bytes hitTableRecord[hitTableSize] hits hitTableRecord: int hitCount, hitRecord[hitCount] hit hit: long seqOffset, // byte offset into sequence names table int pos // biological position in sequence
Constructor and Description |
---|
NIODataStoreFactory() |
Modifier and Type | Method and Description |
---|---|
DataStore |
buildDataStore(File storeFile,
SequenceDB seqDB,
Packing packing,
int wordLength,
int threshold)
Build a new DataStore.
|
DataStore |
getDataStore(File storeFile)
Get a pre-built data store associated with a file.
|
public NIODataStoreFactory()
public DataStore getDataStore(File storeFile) throws IOException
DataStoreFactory
getDataStore
in interface DataStoreFactory
storeFile
- the File to map in as a data storeIOException
- if the file could not be mappedpublic DataStore buildDataStore(File storeFile, SequenceDB seqDB, Packing packing, int wordLength, int threshold) throws IllegalAlphabetException, IOException, BioException
DataStoreFactory
buildDataStore
in interface DataStoreFactory
storeFile
- the file to store the data storeseqDB
- the SequenceDB to store in the data storepacking
- the Packing used to bit-encode the sequenceswordLength
- the number of symbols per wordthreshold
- the number of times a word must appear to be ignoredIllegalAlphabetException
- if the packing does not agree with
the sequencesBioException
- if there is a problem building the data storeIOException
Copyright © 2014 BioJava. All rights reserved.