![]() |
PandA-2024.02
|
#include "nw.h"
Go to the source code of this file.
Macros | |
| #define | MATCH_SCORE 1 |
| #define | MISMATCH_SCORE -1 |
| #define | GAP_SCORE -1 |
| #define | ALIGN '\\' |
| #define | SKIPA '^' |
| #define | SKIPB '<' |
| #define | MAX(A, B) ( ((A)>(B))?(A):(B) ) |
Functions | |
| void | needwun (char SEQA[ALEN], char SEQB[BLEN], char alignedA[ALEN+BLEN], char alignedB[ALEN+BLEN], int M[(ALEN+1) *(BLEN+1)], char ptr[(ALEN+1) *(BLEN+1)]) |
| void needwun | ( | char | SEQA[ALEN], |
| char | SEQB[BLEN], | ||
| char | alignedA[ALEN+BLEN], | ||
| char | alignedB[ALEN+BLEN], | ||
| int | M[(ALEN+1) *(BLEN+1)], | ||
| char | ptr[(ALEN+1) *(BLEN+1)] | ||
| ) |
Definition at line 13 of file nw.c.
References ALEN, ALIGN, BLEN, GAP_SCORE, M, MATCH_SCORE, MAX, max, MISMATCH_SCORE, symmetry::row, SKIPA, and SKIPB.
Referenced by main(), and run_benchmark().

1.8.13