fast-bwa/bseq.h

12 lines
201 B
C
Raw Normal View History

2013-02-07 03:38:40 +08:00
#ifndef BATCHSEQ_H_
#define BATCHSEQ_H_
typedef struct {
2013-02-07 04:03:09 +08:00
int l_seq;
2013-02-08 03:36:18 +08:00
char *name, *comment, *seq, *qual, *sam;
2013-02-07 03:38:40 +08:00
} bseq1_t;
2013-02-07 04:03:09 +08:00
bseq1_t *bseq_read(int chunk_size, int *n_, void *ks1_, void *ks2_);
2013-02-07 03:38:40 +08:00
#endif