Class
RoiIOContext
The I/O context to use for ROI I/O.
Include Headers
bam_io.h
Parameters
The name store class. | |
The name store cache class. Default: NameStoreCache<TNameStore> |
Typedefs
The name store class. | |
The name store cache class. |
Member Functions
Constructor. |
Functions
Return reference to name store from RoiIOContext. | |
Return reference to name store cache from RoiIOContext. |
Examples
NameStoreCache<StringSet<CharString> > nameStoreCache(nameStore);
RoiIOContext<StringSet<CharString> > bamIOContext(nameStore, nameStoreCache);
// ...
Using a RoiIOContext with a FragmentStore.
typedef NameStoreCache<TNameStore> TNameStoreCache;
FragmentStore<> store;
// Optionally, do something with store.
typedef RoiIOContext<TNameStore, TNameStoreCache> TRoiIOContext;
TRoiIOContext bamIOContext(store.contigNameStore, store.contigNameStoreCache);
// ...
SeqAn - Sequence Analysis Library - www.seqan.de