16439684a0ecc75ede242ded740c51cf1f60c8a4 angie Tue Feb 22 11:36:43 2011 -0800 Feature #2820 (tabix: add as optional linked library in kent/src):Added lineFile wrapper on tabix: lineFileOnTabix to open; then lineFileNext and its derivatives work as usual. lineFileSetTabixRegion seeks to the given position range, and subsequent lineFileNext's return lines in that position range. lineFileSeek is not supported -- tabix doesn't have linear offsets but rather a block number and offset which are packed into 64 bits. Line numbers are not known after calls to lineFileSetTabixRegion. diff --git src/inc/knetUdc.h src/inc/knetUdc.h new file mode 100644 index 0000000..f2af578 --- /dev/null +++ src/inc/knetUdc.h @@ -0,0 +1,10 @@ +/* knetUdc -- install udc i/o functions in knetfile interface in Heng Li's samtools lib. */ +/* As of 2/23/10, the KNETFILE_HOOKS extension is a UCSC-local modification of samtools. */ + +#ifndef KNETUDC_H +#define KNETUDC_H + +void knetUdcInstall(); +/* install udc i/o functions in knetfile interface in Heng Li's samtools lib. */ + +#endif//ndef KNETUDC_H