mirror of
https://github.com/chhylp123/hifiasm.git
synced 2026-09-15 12:47:57 +08:00
19 lines
242 B
C
19 lines
242 B
C
#ifndef __READ__
|
|
#define __READ__
|
|
|
|
#include<stdint.h>
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
#include <zlib.h>
|
|
#include "kseq.h"
|
|
|
|
|
|
KSEQ_INIT(gzFile, gzread)
|
|
|
|
void init_kseq(char* file);
|
|
void destory_kseq();
|
|
int get_read(kseq_t *s);
|
|
|
|
|
|
#endif
|