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-07 03:38:40 +08:00
|
|
|
char *name, *comment, *seq, *qual;
|
|
|
|
|
} 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
|