-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgaba_parse.h
534 lines (495 loc) · 18 KB
/
gaba_parse.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
/**
* @file gaba_parse.h
*
* @brief libgaba utility function implementations
*
* @author Hajime Suzuki
* @date 2018/1/20
* @license Apache v2
*
* NOTE: Including this header is not recommended since this header internally include
* arch/arch.h, which floods a lot of SIMD-related defines. The same function will
* be found in the libgaba.a. The functions can be overridden by this header by
* compiling the file with a proper SIMD-enabling flag, such as `-mavx2 -mbmi -mpopcnt'
* (see Makefile for the details), which result in a slightly better performace
* with the functions inlined.
*
* CIGAR printers:
* gaba_dump_cigar_forward:
* gaba_dump_cigar_reverse:
* gaba_print_cigar_forward:
* gaba_print_cigar_reverse:
*
* MAF-style gapped alignment printers:
* gaba_dump_gapped_forward
* gaba_dump_gapped_reverse
*
* match and gap counter (also calculates score of subalignment):
* gaba_calc_score
*/
#ifndef _GABA_PARSE_H_INCLUDED
#define _GABA_PARSE_H_INCLUDED
#ifndef _GABA_PARSE_EXPORT_LEVEL
# define _GABA_PARSE_EXPORT_LEVEL static inline /* hidden by default */
#endif
#include <stdint.h> /* uint32_t, uint64_t, ... */
#include <stddef.h> /* ptrdiff_t */
#include "gaba.h"
#include "arch/arch.h"
/**
* @type gaba_printer_t
* @brief callback to CIGAR element printer
* called with a pair of cigar operation (c) and its length (len).
* void *fp is an opaque pointer to the context of the printer.
*/
#ifndef _GABA_PRINTER_T_DEFINED
#define _GABA_PRINTER_T_DEFINED
typedef int (*gaba_printer_t)(void *, uint64_t, char); /* moved from gaba.h */
#endif
/* macros */
#define _gaba_parse_min2(_x, _y) ( (_x) < (_y) ? (_x) : (_y) )
#define _gaba_parse_ptr(_p) ( (uint64_t const *)((uint64_t)(_p) & ~(sizeof(uint64_t) - 1)) )
#define _gaba_parse_ofs(_p) ( ((uint64_t)(_p) & sizeof(uint32_t)) ? 32 : 0 )
#if BIT == 2
/* 2bit encoding */
static uint8_t const gaba_parse_ascii_fw[16] __attribute__(( aligned(16) )) = {
'A', 'C', 'G', 'T', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N'
};
static uint8_t const gaba_parse_ascii_rv[16] __attribute__(( aligned(16) )) = {
'T', 'G', 'C', 'A', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N', 'N'
};
static uint8_t const gaba_parse_comp_mask[16] __attribute__(( aligned(16) )) = {
0x03, 0x02, 0x01, 0x00, 0x04, 0x04, 0x04, 0x04,
0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04, 0x04
};
#else
/* 4bit encoding */
static uint8_t const gaba_parse_ascii_fw[16] __attribute__(( aligned(16) )) = {
'N', 'A', 'C', 'M', 'G', 'R', 'S', 'V', 'T', 'W', 'Y', 'H', 'K', 'D', 'B', 'N'
};
static uint8_t const gaba_parse_ascii_rv[16] __attribute__(( aligned(16) )) = {
'N', 'T', 'G', 'K', 'C', 'Y', 'S', 'B', 'A', 'W', 'R', 'D', 'M', 'H', 'V', 'N'
};
static uint8_t const gaba_parse_comp_mask[16] __attribute__(( aligned(16) )) = {
0x00, 0x08, 0x04, 0x0c, 0x02, 0x0a, 0x06, 0x0e,
0x01, 0x09, 0x05, 0x0d, 0x03, 0x0b, 0x07, 0x0f
};
#endif
/* dp context (opaque) */
#ifndef _GABA_H_INCLUDED
typedef struct gaba_dp_context_s gaba_dp_t;
#endif
struct gaba_parse_dp_context_s {
uint64_t _pad[12]; /** (96) margin */
/* score constants */
// struct gaba_score_vec_s scv; /** (80) substitution matrix and gaps */
/* scores */
float imx, xmx; /** (8) 1 / (M - X), X / (M - X) (precalculated constants) */
int8_t tx; /** (1) xdrop threshold */
int8_t tf; /** (1) filter threshold */
int8_t gi, ge, gfa, gfb; /** (4) negative integers */
uint8_t aflen, bflen; /** (2) short-gap length thresholds */
/** 192; 64byte aligned */
};
/**
* @fn gaba_parse_u64
*/
static inline
uint64_t gaba_parse_u64(
uint64_t const *ptr,
int64_t pos)
{
int64_t rem = pos & 63;
uint64_t a = (ptr[pos>>6]>>rem) | ((ptr[(pos>>6) + 1]<<(63 - rem))<<1);
return(a);
}
/**
* @macro _gaba_diag
* @brief convert contiguous diagonal transitions to zeros
*/
#define _gaba_diag(_x) ( (_x) ^ 0x5555555555555555 )
/**
* @macro _parser_nop
* @brief dummy
*/
#define _parser_nop(_c) { (void)(_c); }
/**
* @macro _parser_init_fw, _parser_init_rv
* @brief initialize variables for the parser template
*/
#define _parser_init_fw(_path, _offset, _len) \
uint64_t const *p = _gaba_parse_ptr(_path); \
uint64_t lim = (_offset) + _gaba_parse_ofs(_path) + (_len), ridx = (_len);
#define _parser_init_rv(_path, _offset, _len) \
uint64_t const *p = _gaba_parse_ptr(_path); \
uint64_t ofs = (int64_t)(_offset) + _gaba_parse_ofs(_path) - 64, idx = (_len);
/**
* @macro _parser_loop_fw, _parser_loop_rv
* @brief parser templates
*/
#define _parser_loop_fw(_del_dump, _ins_dump, _diag_step, _diag_end) { \
while((int64_t)ridx > 0) { \
ZCNT_RESULT uint64_t m; uint64_t c; \
/* insertions: ins comes before del so that DDDIII region is parsed in the order: 3D -> 0M -> 3I */ \
m = tzcnt(~gaba_parse_u64(p, lim - ridx)); \
c = _gaba_parse_min2(ridx, m - (m > 0)); \
ridx -= c; _ins_dump(c); /* at most 64bp */ \
/* deletions */ \
m = tzcnt(gaba_parse_u64(p, lim - ridx)); \
c = _gaba_parse_min2(ridx, m); \
ridx -= c; _del_dump(c); /* at most 64bp */ \
/* diagonals */ \
uint64_t sridx = ridx; \
do { \
m = tzcnt(_gaba_diag(gaba_parse_u64(p, lim - ridx))); \
c = _gaba_parse_min2(ridx, m) & ~0x01; \
ridx -= c; _diag_step(c>>1); \
} while(c == 64); \
_diag_end((sridx - ridx)>>1); \
} \
}
#define _parser_loop_rv(_del_dump, _ins_dump, _diag_dump, _diag_end) { \
while((int64_t)idx > 0) { \
ZCNT_RESULT uint64_t m; uint64_t c; \
/* deletions */ \
m = lzcnt(gaba_parse_u64(p, ofs + idx)); \
c = _gaba_parse_min2(idx, m - (m > 0)); \
idx -= c; _del_dump(c); /* at most 64bp */ \
/* insertions */ \
m = lzcnt(~gaba_parse_u64(p, ofs + idx)); \
c = _gaba_parse_min2(idx, m); \
idx -= c; _ins_dump(c); /* at most 64bp */ \
/* diagonals */ \
uint64_t sidx = idx; \
do { \
m = lzcnt(_gaba_diag(gaba_parse_u64(p, ofs + idx))); \
c = _gaba_parse_min2(idx, m) & ~0x01; \
idx -= c; _diag_dump(c>>1); \
} while(c == 64); \
_diag_end((sidx - idx)>>1); \
} \
}
/**
* @fn gaba_parse_dump_num
*/
static inline
uint64_t gaba_parse_dump_num(
char *buf,
uint64_t len,
char ch)
{
if(len < 64) {
static uint8_t const conv[64] = {
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09,
0x10, 0x11, 0x12, 0x13, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19,
0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28, 0x29,
0x30, 0x31, 0x32, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0x39,
0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46, 0x47, 0x48, 0x49,
0x50, 0x51, 0x52, 0x53, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59,
0x60, 0x61, 0x62, 0x63
};
char *p = buf;
*p = (conv[len]>>4) + '0'; p += (conv[len] & 0xf0) != 0;
*p++ = (conv[len] & 0x0f) + '0';
*p++ = ch;
return(p - buf);
} else {
uint64_t adv;
uint8_t b[16] = { (uint8_t)ch, '0' }, *p = &b[1];
while(len != 0) { *p++ = (len % 10) + '0'; len /= 10; }
for(p -= (p != &b[1]), adv = (uint64_t)((ptrdiff_t)(p - b)) + 1; p >= b; p--) { *buf++ = *p; }
return(adv);
}
}
/**
* @fn gaba_print_cigar_forward, gaba_dump_cigar_forward, gaba_print_cigar_reverse, gaba_print_cigar_reverse
* @brief parse path string and print cigar to file
*/
#define _cigar_del(_c) _cigar_dump(_c, 'D')
#define _cigar_ins(_c) _cigar_dump(_c, 'I')
#define _cigar_match(_c) _cigar_dump(_c, 'M')
#define _cigar_core_f() ({ \
_cigar_init(); \
_parser_init_fw(path, offset, len); \
_parser_loop_fw(_cigar_del, _cigar_ins, _parser_nop, _cigar_match); \
_cigar_term(); \
})
#define _cigar_core_r() ({ \
_cigar_init(); \
_parser_init_rv(path, offset, len); \
_parser_loop_rv(_cigar_del, _cigar_ins, _parser_nop, _cigar_match); \
_cigar_term(); \
})
#define _cigar_args gaba_printer_t printer, void *fp, uint32_t const *path, uint64_t offset, uint64_t len
#define _cigar_init() uint64_t clen = 0;
#define _cigar_term() clen
#define _cigar_dump(_c, _e) { if(_c) { clen += printer(fp, _c, _e); } }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_print_cigar_forward(_cigar_args) { return(_cigar_core_f()); }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_print_cigar_reverse(_cigar_args) { return(_cigar_core_r()); }
#undef _cigar_args
#undef _cigar_init
#undef _cigar_term
#undef _cigar_dump
#define _cigar_args char *buf, uint64_t buf_size, uint32_t const *path, uint64_t offset, uint64_t len
#define _cigar_init() char *b = buf;
#define _cigar_term() ({ *b = '\0'; b - buf; })
#define _cigar_dump(_c, _e) { if(_c) { b += gaba_parse_dump_num(b, _c, _e); } }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_dump_cigar_forward(_cigar_args) { return(_cigar_core_f()); }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_dump_cigar_reverse(_cigar_args) { return(_cigar_core_r()); }
#undef _cigar_args
#undef _cigar_init
#undef _cigar_term
#undef _cigar_dump
/**
* @macro GABA_SEQ_FW, GABA_SEQ_RV, GABA_SEQ_A, GABA_SEQ_B
*/
#define GABA_SEQ_FW ( 0x00 )
#define GABA_SEQ_RV ( 0x01 )
#define GABA_SEQ_A ( 0x00 )
#define GABA_SEQ_B ( 0x02 )
/**
* @fn gaba_dump_xcigar_forward, gaba_dump_xcigar_reverse
* @brief cigar dumper that discriminates matches and mismatches
*/
#define _xcigar_del_f(_c) { ap += (_c); _xcigar_dump(_c, 'D'); }
#define _xcigar_del_r(_c) { ap -= (_c); _xcigar_dump(_c, 'D'); }
#define _xcigar_ins_f(_c) { bp += (_c); _xcigar_dump(_c, 'I'); }
#define _xcigar_ins_r(_c) { bp -= (_c); _xcigar_dump(_c, 'I'); }
#define _xcigar_mask_match(_x) ( ~(_x) )
#define _xcigar_mask_mismatch(_x) ( (_x) )
#define _xcigar_load_fw(_p, _l) ( _loadu_v16i8((_p)) )
#define _xcigar_load_rv(_p, _l) ( _shuf_v16i8((_load_v16i8(gaba_parse_comp_mask)), _swapn_v16i8(_loadu_v16i8((_p) - (_l)), (_l))) )
#define _xcigar_match_xx(_op_mask, _load_a, _sign_a, _load_b, _sign_b, _ch) { \
uint64_t msave = mrem; \
do { \
uint64_t l = _gaba_parse_min2(mrem, 16); \
v16i8_t av = _load_a(ap, l), bv = _load_b(bp, l); \
d = _gaba_parse_min2(tzcnt(_op_mask(((v16_masku_t){ .mask = _mask_v16i8(_eq_v16i8(av, bv)) }).all)), l); \
ap += (_sign_a) * d; bp += (_sign_b) * d; mrem -= d; \
} while(d >= 16); \
_xcigar_dump(msave - mrem, _ch); \
}
#define _xcigar_match_ff(_c) { \
uint64_t mrem = (_c), d; \
while((int64_t)mrem > 0) { \
_xcigar_match_xx(_xcigar_mask_match, _xcigar_load_fw, 1, _xcigar_load_fw, 1, '='); \
_xcigar_match_xx(_xcigar_mask_mismatch, _xcigar_load_fw, 1, _xcigar_load_fw, 1, 'X'); \
} \
}
#define _xcigar_match_fr(_c) { \
uint64_t mrem = (_c), d; \
while((int64_t)mrem > 0) { \
_xcigar_match_xx(_xcigar_mask_match, _xcigar_load_fw, 1, _xcigar_load_rv, -1, '='); \
_xcigar_match_xx(_xcigar_mask_mismatch, _xcigar_load_fw, 1, _xcigar_load_rv, -1, 'X'); \
} \
}
#define _xcigar_match_rf(_c) { \
uint64_t mrem = (_c), d; \
while((int64_t)mrem > 0) { \
_xcigar_match_xx(_xcigar_mask_match, _xcigar_load_rv, -1, _xcigar_load_fw, 1, '='); \
_xcigar_match_xx(_xcigar_mask_mismatch, _xcigar_load_rv, -1, _xcigar_load_fw, 1, 'X'); \
} \
}
#define _xcigar_match_rr(_c) { \
uint64_t mrem = (_c), d; \
while((int64_t)mrem > 0) { \
_xcigar_match_xx(_xcigar_mask_match, _xcigar_load_rv, -1, _xcigar_load_rv, -1, '='); \
_xcigar_match_xx(_xcigar_mask_mismatch, _xcigar_load_rv, -1, _xcigar_load_rv, -1, 'X'); \
} \
}
#define _xcigar_core_f() ({ \
_xcigar_init(); \
uint8_t const *ap = a->base < GABA_EOU ? &a->base[s->apos] : gaba_mirror(&a->base[s->apos], 0); \
uint8_t const *bp = b->base < GABA_EOU ? &b->base[s->bpos] : gaba_mirror(&b->base[s->bpos], 0); \
_parser_init_fw(path, s->ppos, gaba_plen(s)); \
switch(((a->base >= GABA_EOU)<<1) | (b->base >= GABA_EOU)) { \
case 0x00: _parser_loop_fw(_xcigar_del_f, _xcigar_ins_f, _parser_nop, _xcigar_match_ff); break; \
case 0x01: _parser_loop_fw(_xcigar_del_f, _xcigar_ins_r, _parser_nop, _xcigar_match_fr); break; \
case 0x02: _parser_loop_fw(_xcigar_del_r, _xcigar_ins_f, _parser_nop, _xcigar_match_rf); break; \
case 0x03: _parser_loop_fw(_xcigar_del_r, _xcigar_ins_r, _parser_nop, _xcigar_match_rr); break; \
default: break; \
} \
_xcigar_term(); \
})
#define _xcigar_core_r() ({ \
_xcigar_init(); \
uint8_t const *ap = a->base < GABA_EOU ? &a->base[s->apos + s->alen] : gaba_mirror(&a->base[s->apos + s->alen], 0); \
uint8_t const *bp = b->base < GABA_EOU ? &b->base[s->bpos + s->blen] : gaba_mirror(&b->base[s->bpos + s->blen], 0); \
_parser_init_rv(path, s->ppos, gaba_plen(s)); \
switch(((a->base >= GABA_EOU)<<1) | (b->base >= GABA_EOU)) { \
case 0x00: _parser_loop_rv(_xcigar_del_r, _xcigar_ins_r, _parser_nop, _xcigar_match_rr); break; \
case 0x01: _parser_loop_rv(_xcigar_del_r, _xcigar_ins_f, _parser_nop, _xcigar_match_rf); break; \
case 0x02: _parser_loop_rv(_xcigar_del_f, _xcigar_ins_r, _parser_nop, _xcigar_match_fr); break; \
case 0x03: _parser_loop_rv(_xcigar_del_f, _xcigar_ins_f, _parser_nop, _xcigar_match_ff); break; \
default: break; \
} \
_xcigar_term(); \
})
#define _xcigar_args gaba_printer_t printer, void *fp, uint32_t const *path, gaba_path_section_t const *s, gaba_section_t const *a, gaba_section_t const *b
#define _xcigar_init() uint64_t clen = 0;
#define _xcigar_term() clen
#define _xcigar_dump(_c, _e) { if(_c) { clen += printer(fp, _c, _e); } }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_print_xcigar_forward(_xcigar_args) { return(_xcigar_core_f()); }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_print_xcigar_reverse(_xcigar_args) { return(_xcigar_core_r()); }
#undef _xcigar_args
#undef _xcigar_init
#undef _xcigar_term
#undef _xcigar_dump
#define _xcigar_args char *buf, uint64_t buf_size, uint32_t const *path, gaba_path_section_t const *s, gaba_section_t const *a, gaba_section_t const *b
#define _xcigar_init() char *q = buf;
#define _xcigar_term() ({ *q = '\0'; q - buf; })
#define _xcigar_dump(_c, _e) { if(_c) { q += gaba_parse_dump_num(q, _c, _e); } }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_dump_xcigar_forward(_xcigar_args) { return(_xcigar_core_f()); }
_GABA_PARSE_EXPORT_LEVEL uint64_t gaba_dump_xcigar_reverse(_xcigar_args) { return(_xcigar_core_r()); }
#undef _xcigar_args
#undef _xcigar_init
#undef _xcigar_term
#undef _xcigar_dump
/**
* @fn gaba_dump_seq_forward
* @brief traverse the path in the forward direction and dump the sequence with appropriate gaps
*/
_GABA_PARSE_EXPORT_LEVEL
uint64_t gaba_dump_seq_forward(
char *buf,
uint64_t buf_size,
uint32_t conf, /* { SEQ_A, SEQ_B } x { SEQ_FW, SEQ_RV } */
uint32_t const *path,
uint64_t offset,
uint64_t len,
uint8_t const *seq, /* a->seq[s->alen] when SEQ_RV */
char gap) /* gap char, '-' */
{
#define _
#define _gap(c) { \
r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
_storeu_v16i8(r - i, gv); \
} \
}
#define _fw(c) { \
q += c, r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
_storeu_v16i8(r - i, _shuf_v16i8(cv, _loadu_v16i8(q - i))); \
} \
}
#define _rv(c) { \
q -= c; r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
uint64_t l = _gaba_parse_min2(i, 16); \
_storeu_v16i8(r - i, _shuf_v16i8(cv, \
_swapn_v16i8(_loadu_v16i8(q + i - l), l) \
)); \
} \
}
v16i8_t const cv = _load_v16i8((conf & GABA_SEQ_RV) ? gaba_parse_ascii_rv : gaba_parse_ascii_fw);
v16i8_t const gv = _set_v16i8(gap);
uint8_t const *q = seq;
char *r = buf;
_parser_init_fw(path, offset, len);
switch(conf) {
case GABA_SEQ_A | GABA_SEQ_FW: _parser_loop_fw(_fw, _gap, _fw, _parser_nop); break;
case GABA_SEQ_A | GABA_SEQ_RV: _parser_loop_fw(_rv, _gap, _rv, _parser_nop); break;
case GABA_SEQ_B | GABA_SEQ_FW: _parser_loop_fw(_gap, _fw, _fw, _parser_nop); break;
case GABA_SEQ_B | GABA_SEQ_RV: _parser_loop_fw(_gap, _rv, _rv, _parser_nop); break;
}
*r = '\0';
return(r - buf);
#undef _gap
#undef _fw
#undef _rv
}
/**
* @fn gaba_dump_seq_reverse
* @brief traverse the path in the reverse direction and dump the sequence with appropriate gaps
*/
_GABA_PARSE_EXPORT_LEVEL
uint64_t gaba_dump_seq_reverse(
char *buf,
uint64_t buf_size,
uint32_t conf, /* { SEQ_A, SEQ_B } x { SEQ_FW, SEQ_RV } */
uint32_t const *path,
uint64_t offset,
uint64_t len,
uint8_t const *seq, /* a->seq[s->alen] when SEQ_RV */
char gap) /* gap char, '-' */
{
#define _gap(c) { \
r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
_storeu_v16i8(r - i, gv); \
} \
}
#define _fw(c) { \
q += c, r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
_storeu_v16i8(r - i, _shuf_v16i8(cv, _loadu_v16i8(q - i))); \
} \
}
#define _rv(c) { \
q -= c; r += c; \
for(uint64_t i = c; i > 0; i -= _gaba_parse_min2(i, 16)) { \
uint64_t l = _gaba_parse_min2(i, 16); \
_storeu_v16i8(r - i, _shuf_v16i8(cv, \
_swapn_v16i8(_loadu_v16i8(q + i - l), l) \
)); \
} \
}
v16i8_t const cv = _load_v16i8((conf & GABA_SEQ_RV) ? gaba_parse_ascii_rv : gaba_parse_ascii_fw);
v16i8_t const gv = _set_v16i8(gap);
uint8_t const *q = seq;
char *r = buf;
_parser_init_rv(path, offset, len);
switch(conf) {
case GABA_SEQ_A | GABA_SEQ_FW: _parser_loop_rv(_fw, _gap, _fw, _parser_nop); break;
case GABA_SEQ_A | GABA_SEQ_RV: _parser_loop_rv(_rv, _gap, _rv, _parser_nop); break;
case GABA_SEQ_B | GABA_SEQ_FW: _parser_loop_rv(_gap, _fw, _fw, _parser_nop); break;
case GABA_SEQ_B | GABA_SEQ_RV: _parser_loop_rv(_gap, _rv, _rv, _parser_nop); break;
default: break;
}
*r = '\0';
return(r - buf);
#undef _gap
#undef _fw
#undef _rv
}
/**
* @fn gaba_dump_seq_ref, gaba_dump_seq_query
* @brief dump_seq_ref for sequence A, dump_seq_query for sequence B
*/
_GABA_PARSE_EXPORT_LEVEL
uint64_t gaba_dump_seq_ref(
char *buf,
uint64_t buf_size,
uint32_t const *path,
gaba_path_section_t const *s,
gaba_section_t const *a)
{
return(gaba_dump_seq_forward(
buf, buf_size,
GABA_SEQ_A | (a->base < GABA_EOU ? GABA_SEQ_FW : GABA_SEQ_RV),
path, s->ppos, gaba_plen(s),
a->base < GABA_EOU ? &a->base[s->apos] : gaba_mirror(&a->base[s->apos], 0),
'-'
));
}
_GABA_PARSE_EXPORT_LEVEL
uint64_t gaba_dump_seq_query(
char *buf,
uint64_t buf_size,
uint32_t const *path,
gaba_path_section_t const *s,
gaba_section_t const *b)
{
return(gaba_dump_seq_forward(
buf, buf_size,
GABA_SEQ_B | (b->base < GABA_EOU ? GABA_SEQ_FW : GABA_SEQ_RV),
path, s->ppos, gaba_plen(s),
b->base < GABA_EOU ? &b->base[s->bpos] : gaba_mirror(&b->base[s->bpos], 0),
'-'
));
}
#endif /* _GABA_PARSE_H_INCLUDED */
/**
* end of gaba_parse.h
*/