MASA-Core
Public Attributes
cell_t Struct Reference

Detailed Description

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 $(H,F)$ components or the $(H,E)$ components.

Definition at line 35 of file libmasaTypes.hpp.

#include <libmasaTypes.hpp>

List of all members.

Public Attributes

int h
union {
   int   f
   int   e
}; 

Member Data Documentation

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.


The documentation for this struct was generated from the following file: