-
Notifications
You must be signed in to change notification settings - Fork 5
/
gaba_wrap.h
759 lines (666 loc) · 18.8 KB
/
gaba_wrap.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
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
/**
* @file gaba_wrap.h
*
* @brief wrapper API implementation of the GABA library
* gaba.c must be compiled with the following combinations:
* {-DBW=16, -DBW=32} x {-DMODEL=LINEAR, -DMODEL=AFFINE}.
*
* @author Hajime Suzuki
* @date 2016/6/1
* @license Apache v2
*/
#ifndef _GABA_WRAP_H_INCLUDED
#define _GABA_WRAP_H_INCLUDED
#if !defined(_GABA_WRAP_EXPORT_LEVEL)
# define _GABA_WRAP_EXPORT_LEVEL static inline /* hidden by default */
#endif
/* combined gap penalty is not implemented yet */
// #define DISABLE_COMBINED
/* import unittest */
#ifdef UNITTEST
# ifndef UNITTEST_UNIQUE_ID
# define UNITTEST_UNIQUE_ID 30
# endif
# include "unittest.h"
#endif
/**
* @struct redefinition of gaba_dp_context_s
* must be declared before gaba.h is included
*/
typedef struct gaba_api_s gaba_dp_t; /** (64) [0] for 32-cell, [1] for 16-cell */
#include <stdint.h> /* uint32_t, uint64_t, ... */
#include "gaba.h"
#include "gaba_parse.h"
#include "arch/arch.h"
/* static assertion macro */
#define _sa_cat_intl(x, y) x##y
#define _sa_cat(x, y) _sa_cat_intl(x, y)
#define _static_assert(expr) typedef char _sa_cat(_st, __LINE__)[(expr) ? 1 : -1]
/* bandwidth-related macros (see gaba.c) */
#define GABA_DP_CTX_MAX ( 3 )
// #define _gaba_dp_ctx_index(_bw) ( GABA_DP_CTX_MAX - ((_bw)>>4) )
#define _gaba_dp_ctx_index(_bw) ( ((_bw) == 64) ? 0 : (((_bw) == 32) ? 1 : 2) )
_static_assert(_gaba_dp_ctx_index(64) == 0); /* assume 64-cell has the smallest index */
/* add namespace for arch wrapper (see main.c) */
#ifndef _import
# ifdef NAMESPACE
# define _import_cat(x, y) x##_##y
# define _import_cat2(x, y) _import_cat(x, y)
# define _import(_base) _import_cat2(_base, NAMESPACE)
# else
# define _import(_base) _base
# endif
#endif
/* gap penalty model (linear or affine) */
#define GABA_LINEAR 0
#define GABA_AFFINE 1
#define GABA_COMBINED 2
/**
* @struct gaba_api_s
*
* @brief a set of pointers to GABA API
*/
struct gaba_api_s {
/* fill-in */
gaba_fill_t *(*dp_fill_root)(
gaba_dp_t *self,
gaba_section_t const *a,
uint32_t apos,
gaba_section_t const *b,
uint32_t bpos,
uint32_t pridx);
gaba_fill_t *(*dp_fill)(
gaba_dp_t *self,
gaba_fill_t const *prev_sec,
gaba_section_t const *a,
gaba_section_t const *b,
uint32_t pridx);
/* merge two sections */
gaba_fill_t *(*dp_merge)(
gaba_dp_t *dp,
gaba_fill_t const *const *sec,
uint8_t const *qofs,
uint32_t cnt);
/* max score and pos search */
gaba_pos_pair_t *(*dp_search_max)(
gaba_dp_t *self,
gaba_fill_t const *sec);
/* trace */
gaba_alignment_t *(*dp_trace)(
gaba_dp_t *self,
gaba_fill_t const *tail,
gaba_alloc_t const *alloc);
void *unused[3];
};
_static_assert(sizeof(struct gaba_api_s) == 8 * sizeof(void *)); /* must be consistent to gaba_opaque_s */
#define _api(_dp) ( (struct gaba_api_s const *)(_dp) )
#define _api_array(_ctx) ( (struct gaba_api_s const (*)[GABA_DP_CTX_MAX])(_ctx) )
/* forward declarations */
#define _decl_cat3_2(a, b, c) a##_##b##_##c
#define _decl_cat3(a, b, c) _decl_cat3_2(a, b, c)
#define _decl(ret_t, _base, ...) \
ret_t _import(_decl_cat3(_base, linear, 16))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, affine, 16))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, combined, 16))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, linear, 32))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, affine, 32))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, combined, 32))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, linear, 64))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, affine, 64))(__VA_ARGS__); \
ret_t _import(_decl_cat3(_base, combined, 64))(__VA_ARGS__);
_decl(gaba_t *, gaba_init, gaba_params_t const *params);
_decl(void, gaba_clean, gaba_t *ctx);
_decl(gaba_dp_t *, gaba_dp_init, gaba_t const *ctx);
_decl(void, gaba_dp_flush, gaba_dp_t *self);
_decl(gaba_stack_t const *, gaba_dp_save_stack, gaba_dp_t *self);
_decl(void, gaba_dp_flush_stack, gaba_dp_t *self, gaba_stack_t const *stack);
_decl(void, gaba_dp_clean, gaba_dp_t *self);
_decl(gaba_fill_t *, gaba_dp_fill_root, gaba_dp_t *self, gaba_section_t const *a, uint32_t apos, gaba_section_t const *b, uint32_t bpos, uint32_t pridx);
_decl(gaba_fill_t *, gaba_dp_fill, gaba_dp_t *self, gaba_fill_t const *prev_sec, gaba_section_t const *a, gaba_section_t const *b, uint32_t pridx);
_decl(gaba_fill_t *, gaba_dp_merge, gaba_dp_t *self, gaba_fill_t const *const *sec, uint8_t const *qofs, uint32_t cnt);
_decl(gaba_pos_pair_t *, gaba_dp_search_max, gaba_dp_t *self, gaba_fill_t const *sec);
_decl(gaba_alignment_t *, gaba_dp_trace, gaba_dp_t *self, gaba_fill_t const *tail, gaba_alloc_t const *alloc);
_decl(void, gaba_dp_res_free, gaba_dp_t *dp, gaba_alignment_t *res);
_decl(gaba_score_t *, gaba_dp_calc_score, gaba_dp_t *dp, uint32_t const *path, gaba_path_section_t const *s, gaba_section_t const *a, gaba_section_t const *b);
// _decl(int64_t, gaba_dp_print_cigar_forward, gaba_dp_printer_t printer, void *fp, uint32_t const *path, uint32_t offset, uint32_t len);
// _decl(int64_t, gaba_dp_print_cigar_reverse, gaba_dp_printer_t printer, void *fp, uint32_t const *path, uint32_t offset, uint32_t len);
// _decl(int64_t, gaba_dp_dump_cigar_forward, char *buf, uint64_t buf_size, uint32_t const *path, uint32_t offset, uint32_t len);
// _decl(int64_t, gaba_dp_dump_cigar_reverse, char *buf, uint64_t buf_size, uint32_t const *path, uint32_t offset, uint32_t len);
#undef _decl
/* function table */
_static_assert(GABA_LINEAR == 0);
_static_assert(GABA_AFFINE == 1);
_static_assert(GABA_COMBINED == 2);
_static_assert(_gaba_dp_ctx_index(64) == 0);
_static_assert(_gaba_dp_ctx_index(32) == 1);
_static_assert(_gaba_dp_ctx_index(16) == 2);
static
struct gaba_api_s const api_table[][GABA_DP_CTX_MAX] __attribute__(( aligned(32) )) = {
#define _table_elems(_model, _bw) { \
.dp_fill_root = _import(_decl_cat3(gaba_dp_fill_root, _model, _bw)), \
.dp_fill = _import(_decl_cat3(gaba_dp_fill, _model, _bw)), \
.dp_merge = _import(_decl_cat3(gaba_dp_merge, _model, _bw)), \
.dp_search_max = _import(_decl_cat3(gaba_dp_search_max, _model, _bw)), \
.dp_trace = _import(_decl_cat3(gaba_dp_trace, _model, _bw)) \
}
{ _table_elems(linear, 64), _table_elems(linear, 32), _table_elems(linear, 16) },
{ _table_elems(affine, 64), _table_elems(affine, 32), _table_elems(affine, 16) },
#ifndef DISABLE_COMBINED
{ _table_elems(combined, 64), _table_elems(combined, 32), _table_elems(combined, 16) }
#endif
/*
[GABA_LINEAR] = {
[_gaba_dp_ctx_index(16)] = _table_elems(linear, 16),
[_gaba_dp_ctx_index(32)] = _table_elems(linear, 32),
[_gaba_dp_ctx_index(64)] = _table_elems(linear, 64)
},
[GABA_AFFINE] = {
[_gaba_dp_ctx_index(16)] = _table_elems(affine, 16),
[_gaba_dp_ctx_index(32)] = _table_elems(affine, 32),
[_gaba_dp_ctx_index(64)] = _table_elems(affine, 64)
},
#ifndef DISABLE_COMBINED
[GABA_COMBINED] = {
[_gaba_dp_ctx_index(16)] = _table_elems(combined, 16),
[_gaba_dp_ctx_index(32)] = _table_elems(combined, 32),
[_gaba_dp_ctx_index(64)] = _table_elems(combined, 64)
}
#endif
*/
#undef _table_elems
};
/**
* @fn gaba_init_get_index
*/
static inline
int64_t gaba_init_get_index(
struct gaba_params_s const *params)
{
if(params == NULL) {
return(GABA_AFFINE);
}
if(params->gi != 0) {
if(params->gfa != 0 && params->gfb != 0) {
return(GABA_COMBINED);
}
return(GABA_AFFINE);
}
return(GABA_LINEAR);
}
/**
* @fn gaba_set_api
*/
static inline
void *gaba_set_api(
void *ctx,
struct gaba_api_s const (*api)[GABA_DP_CTX_MAX])
{
if(ctx == NULL) { return(NULL); }
struct gaba_api_s *dst = (struct gaba_api_s *)ctx;
for(uint64_t i = 0; i < GABA_DP_CTX_MAX; i++) {
_memcpy_blk_aa(&dst[i], &((struct gaba_api_s const *)api)[i], sizeof(struct gaba_api_s));
}
return((void *)dst);
}
/**
* @fn gaba_init
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_t *gaba_init(
gaba_params_t const *params)
{
if(params == NULL) {
return(NULL);
}
uint64_t idx = gaba_init_get_index(params);
struct gaba_api_s const (*api)[GABA_DP_CTX_MAX] = &api_table[idx];
static gaba_t *(*const init_table[][GABA_DP_CTX_MAX])(gaba_params_t const *params) = {
{ _import(gaba_init_linear_64), _import(gaba_init_linear_32), _import(gaba_init_linear_16) },
{ _import(gaba_init_affine_64), _import(gaba_init_affine_32), _import(gaba_init_affine_16) },
#ifndef DISABLE_COMBINED
{ _import(gaba_init_combined_64), _import(gaba_init_combined_32), _import(gaba_init_combined_16) }
#endif
};
/*
static gaba_t *(*const init_table[][GABA_DP_CTX_MAX])(gaba_params_t const *params) = {
[GABA_LINEAR] = {
[_gaba_dp_ctx_index(16)] = _import(gaba_init_linear_16),
[_gaba_dp_ctx_index(32)] = _import(gaba_init_linear_32),
[_gaba_dp_ctx_index(64)] = _import(gaba_init_linear_64)
},
[GABA_AFFINE] = {
[_gaba_dp_ctx_index(16)] = _import(gaba_init_affine_16),
[_gaba_dp_ctx_index(32)] = _import(gaba_init_affine_32),
[_gaba_dp_ctx_index(64)] = _import(gaba_init_affine_64)
},
#ifndef DISABLE_COMBINED
[GABA_COMBINED] = {
[_gaba_dp_ctx_index(16)] = _import(gaba_init_combined_16),
[_gaba_dp_ctx_index(32)] = _import(gaba_init_combined_32),
[_gaba_dp_ctx_index(64)] = _import(gaba_init_combined_64)
}
#endif
};
*/
/* create context */
gaba_params_t p = *params;
gaba_t *ctx = NULL;
ctx = init_table[idx][_gaba_dp_ctx_index(16)](&p);
/* init 32-cell and 64-cell wide root blocks */
p.reserved = (void *)ctx;
ctx = init_table[idx][_gaba_dp_ctx_index(32)](&p);
ctx = init_table[idx][_gaba_dp_ctx_index(64)](&p);
return((gaba_t *)gaba_set_api((void *)ctx, api));
}
/**
* @fn gaba_clean
*/
_GABA_WRAP_EXPORT_LEVEL
void gaba_clean(
gaba_t *ctx)
{
// _api(ctx)->clean(ctx);
_import(gaba_clean_linear_64)(ctx);
return;
}
/**
* @fn gaba_dp_init
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_dp_t *gaba_dp_init(
gaba_t const *ctx)
{
return((gaba_dp_t *)gaba_set_api((void *)_import(gaba_dp_init_linear_64)(ctx), _api_array(ctx)));
}
/**
* @fn gaba_dp_flush
*/
_GABA_WRAP_EXPORT_LEVEL
void gaba_dp_flush(
gaba_dp_t *self)
{
_import(gaba_dp_flush_linear_64)(self);
return;
}
/**
* @fn gaba_dp_save_stack
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_stack_t const *gaba_dp_save_stack(
gaba_dp_t *self)
{
return(_import(gaba_dp_save_stack_linear_64)(self));
}
/**
* @fn gaba_dp_flush_stack
*/
_GABA_WRAP_EXPORT_LEVEL
void gaba_dp_flush_stack(
gaba_dp_t *self,
gaba_stack_t const *stack)
{
_import(gaba_dp_flush_stack_linear_64)(self, stack);
return;
}
/**
* @fn gaba_dp_clean
*/
_GABA_WRAP_EXPORT_LEVEL
void gaba_dp_clean(
gaba_dp_t *self)
{
_import(gaba_dp_clean_linear_64)(self);
return;
}
/**
* @fn gaba_dp_fill_root
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_fill_t *gaba_dp_fill_root(
gaba_dp_t *self,
gaba_section_t const *a,
uint32_t apos,
gaba_section_t const *b,
uint32_t bpos,
uint32_t pridx)
{
return(_api(self)->dp_fill_root(self, a, apos, b, bpos, pridx));
}
/**
* @fn gaba_dp_fill
* @brief fill dp matrix inside section pairs
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_fill_t *gaba_dp_fill(
gaba_dp_t *self,
gaba_fill_t const *prev_sec,
gaba_section_t const *a,
gaba_section_t const *b,
uint32_t pridx)
{
return(_api(self)->dp_fill(self, prev_sec, a, b, pridx));
}
/**
* @fn gaba_dp_merge
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_fill_t *gaba_dp_merge(
gaba_dp_t *self,
gaba_fill_t const *const *sec,
uint8_t const *qofs,
uint32_t cnt)
{
return(_api(self)->dp_merge(self, sec, qofs, cnt));
// return(NULL); /* not implemented yet */
}
/**
* @fn gaba_dp_search_max
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_pos_pair_t *gaba_dp_search_max(
gaba_dp_t *self,
gaba_fill_t const *sec)
{
return(_api(self)->dp_search_max(self, sec));
}
/**
* @fn gaba_dp_trace
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_alignment_t *gaba_dp_trace(
gaba_dp_t *self,
gaba_fill_t const *tail,
gaba_alloc_t const *alloc)
{
return(_api(self)->dp_trace(self, tail, alloc));
}
/**
* @fn gaba_dp_res_free
*/
_GABA_WRAP_EXPORT_LEVEL
void gaba_dp_res_free(
gaba_dp_t *dp,
gaba_alignment_t *res)
{
_import(gaba_dp_res_free_linear_64)(dp, res);
return;
}
/**
* @fn gaba_dp_calc_score
*/
_GABA_WRAP_EXPORT_LEVEL
gaba_score_t *gaba_dp_calc_score(
gaba_dp_t *dp,
uint32_t const *path,
gaba_path_section_t const *s,
gaba_section_t const *a,
gaba_section_t const *b)
{
return(_import(gaba_dp_calc_score_linear_64)(dp, path, s, a, b));
}
#if 0
/**
* @fn gaba_dp_print_cigar_forward
*/
static inline
uint64_t gaba_dp_print_cigar_forward(
gaba_dp_printer_t printer,
void *fp,
uint32_t const *path,
uint32_t offset,
uint32_t len)
{
return(_import(gaba_dp_print_cigar_forward_linear_64)(printer, fp, path, offset, len));
}
/**
* @fn gaba_dp_print_cigar_reverse
*/
static inline
uint64_t gaba_dp_print_cigar_reverse(
gaba_dp_printer_t printer,
void *fp,
uint32_t const *path,
uint32_t offset,
uint32_t len)
{
return(_import(gaba_dp_print_cigar_reverse_linear_64)(printer, fp, path, offset, len));
}
/**
* @fn gaba_dp_dump_cigar_forward
*/
static inline
uint64_t gaba_dp_dump_cigar_forward(
char *buf,
uint64_t buf_size,
uint32_t const *path,
uint32_t offset,
uint32_t len)
{
return(_import(gaba_dp_dump_cigar_forward_linear_64)(buf, buf_size, path, offset, len));
}
/**
* @fn gaba_dp_dump_cigar_reverse
*/
static inline
uint64_t gaba_dp_dump_cigar_reverse(
char *buf,
uint64_t buf_size,
uint32_t const *path,
uint32_t offset,
uint32_t len)
{
return(_import(gaba_dp_dump_cigar_reverse_linear_64)(buf, buf_size, path, offset, len));
}
#endif
/* unittests */
#if defined(UNITTEST) && UNITTEST != 0
/**
* @struct unittest_seqs_s
* @brief sequence container
*/
struct unittest_seqs_s {
char const *a;
char const *b;
};
#define unittest_seq_pair(_a, _b) ( \
(void *)&((struct unittest_seqs_s const){ \
.a = _a "GGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGGG", \
.b = _b "CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC" \
}) \
)
/**
* @struct unittest_sections_s
* @brief section container
*/
struct unittest_sections_s {
uint8_t const *a, *b;
uint8_t const *alim, *blim;
uint64_t alen, blen;
struct gaba_section_s afsec, aftail, bfsec, bftail;
struct gaba_section_s arsec, artail, brsec, brtail;
};
/**
* @fn unittest_encode_base
* @brief mapping IUPAC amb. to 2bit / 4bit encoding
*/
static inline
uint8_t unittest_encode_base(
char c)
{
/* convert to upper case and subtract offset by 0x40 */
#define _b(x) ( (x) & 0x1f )
/* conversion tables */
#if BIT == 2
enum bases { A = 0x00, C = 0x01, G = 0x02, T = 0x03 };
static uint8_t const table[] = {
[_b('A')] = A,
[_b('C')] = C,
[_b('G')] = G,
[_b('T')] = T,
[_b('U')] = T,
[_b('N')] = A, /* treat 'N' as 'A' */
[_b('_')] = 0 /* sentinel */
};
#else /* BIT == 4 */
enum bases { A = 0x01, C = 0x02, G = 0x04, T = 0x08 };
static uint8_t const table[] = {
[_b('A')] = A,
[_b('C')] = C,
[_b('G')] = G,
[_b('T')] = T,
[_b('U')] = T,
[_b('R')] = A | G,
[_b('Y')] = C | T,
[_b('S')] = G | C,
[_b('W')] = A | T,
[_b('K')] = G | T,
[_b('M')] = A | C,
[_b('B')] = C | G | T,
[_b('D')] = A | G | T,
[_b('H')] = A | C | T,
[_b('V')] = A | C | G,
[_b('N')] = 0, /* treat 'N' as a gap */
[_b('_')] = 0 /* sentinel */
};
#endif /* BIT */
return(table[_b((uint8_t)c)]);
#undef _b
}
/**
* @fn unittest_build_seqs
* @brief build seq_pair and sections
*/
static
void *unittest_build_seqs(void *params)
{
struct unittest_seqs_s const *seqs = (struct unittest_seqs_s const *)params;
char const *a = seqs->a;
char const *b = seqs->b;
uint64_t atot = strlen(a);
uint64_t btot = strlen(b);
uint32_t alen = atot - 64;
uint32_t blen = btot - 64;
uint64_t margin = 64;
struct unittest_sections_s *sec = malloc(
sizeof(struct unittest_sections_s) + (atot + 1) + (btot + 1) + margin);
/* copy sequences */
uint8_t *ca = (uint8_t *)(sec + 1);
uint8_t *cb = ca + atot + 1;
uint8_t *cm = cb + btot + 1;
for(uint64_t i = 0; i < atot; i++) {
ca[i] = unittest_encode_base(a[i]);
}
for(uint64_t i = 0; i < btot; i++) {
cb[i] = unittest_encode_base(b[i]);
}
ca[atot] = cb[btot] = '\0';
memset(cm, 0, margin);
/* build context */
uint8_t const *const alim = (void const *)0x800000000000;
uint8_t const *const blim = (void const *)0x800000000000;
*sec = (struct unittest_sections_s){
.a = ca,
.b = cb,
.alim = alim,
.blim = blim,
.alen = atot,
.blen = btot,
/* forward */
.afsec = gaba_build_section(0, ca, alen),
.aftail = gaba_build_section(2, ca + alen, 64),
.bfsec = gaba_build_section(4, cb, blen),
.bftail = gaba_build_section(6, cb + blen, 64),
/* reverse */
.arsec = gaba_build_section(1, gaba_rev(ca + alen, alim), alen),
.artail = gaba_build_section(3, gaba_rev(ca + atot, alim), 64),
.brsec = gaba_build_section(5, gaba_rev(cb + blen, blim), blen),
.brtail = gaba_build_section(7, gaba_rev(cb + btot, blim), 64)
};
return((void *)sec);
}
/**
* @fn unittest_clean_seqs
*/
static
void unittest_clean_seqs(void *ctx)
{
free(ctx);
}
/**
* @macro with_seq_pair
* @brief constructs .param, .init, and .clean parameters
*/
#define with_seq_pair(_a, _b) \
.params = unittest_seq_pair(_a, _b), \
.init = unittest_build_seqs, \
.clean = unittest_clean_seqs
#define omajinai() \
struct unittest_sections_s const *s = (struct unittest_sections_s const *)ctx;
/*
unittest_config(
.name = "gaba_wrap",
.depends_on = { "gaba" }
);
*/
unittest()
{
gaba_t *c = gaba_init(NULL);
assert(c == NULL);
}
/* linear gap penalty */
unittest()
{
gaba_t *c = gaba_init(GABA_PARAMS(GABA_SCORE_SIMPLE(1, 1, 0, 1)));
assert(c != NULL);
gaba_dp_t *d = gaba_dp_init(c);
assert(d != NULL);
gaba_dp_clean(d);
gaba_clean(c);
}
unittest(with_seq_pair("GGAAAAAAAA", "AAAAAAAA"))
{
omajinai();
gaba_t *c = gaba_init(GABA_PARAMS(GABA_SCORE_SIMPLE(1, 1, 0, 1)));
gaba_dp_t *d = gaba_dp_init(c);
/* check fill functions and resulting scores */
gaba_fill_t *f = gaba_dp_fill_root(d, &s->afsec, 0, &s->bfsec, 0, 0);
f = gaba_dp_fill(d, f, &s->afsec, &s->bftail, 0);
f = gaba_dp_fill(d, f, &s->aftail, &s->bftail, 0);
assert(f->max == 6, "%lld", f->max);
/* check traceback function is callable */
gaba_alignment_t *r = gaba_dp_trace(d, f, NULL);
assert(r != NULL);
gaba_dp_clean(d);
gaba_clean(c);
}
/* affine gap penalty */
unittest()
{
gaba_t *c = gaba_init(GABA_PARAMS(GABA_SCORE_SIMPLE(1, 1, 1, 1)));
assert(c != NULL);
gaba_dp_t *d = gaba_dp_init(c);
assert(d != NULL);
gaba_dp_clean(d);
gaba_clean(c);
}
unittest(with_seq_pair("GGAAAAAAAA", "AAAAAAAA"))
{
omajinai();
gaba_t *c = gaba_init(GABA_PARAMS(GABA_SCORE_SIMPLE(1, 1, 1, 1)));
gaba_dp_t *d = gaba_dp_init(c);
/* check fill functions and resulting scores */
gaba_fill_t *f = gaba_dp_fill_root(d, &s->afsec, 0, &s->bfsec, 0, 0);
f = gaba_dp_fill(d, f, &s->afsec, &s->bftail, 0);
f = gaba_dp_fill(d, f, &s->aftail, &s->bftail, 0);
assert(f->max == 5, "%lld", f->max);
/* check traceback function is callable */
gaba_alignment_t *r = gaba_dp_trace(d, f, NULL);
assert(r != NULL);
gaba_dp_clean(d);
gaba_clean(c);
}
#endif /* UNITTEST != 0 */
#endif /* _GABA_WRAP_H_INCLUDED */
/**
* end of gaba_wrap.h
*/