|
MASA-Core
|
Struct that represents a cell in the DP matrix.
See the Smith-Waterman recurrence function with the gotoh affine gap modification.
Each cell has three components: H, E and F. But note that the E and F components holds the same memory area, because the E and F components are a union. So, the cell structure may represent only two components simultaneously, the
components or the
components.
Definition at line 35 of file libmasaTypes.hpp.
#include <libmasaTypes.hpp>
Public Attributes | |
| int | h |
| union { | |
| int f | |
| int e | |
| }; | |
| union { ... } |
| int cell_t::e |
Definition at line 39 of file libmasaTypes.hpp.
| int cell_t::f |
Definition at line 38 of file libmasaTypes.hpp.
| int cell_t::h |
Definition at line 36 of file libmasaTypes.hpp.
1.7.6.1