|
MASA-Core
|
#include "BlockAlignerParameters.hpp"#include <stdio.h>#include <unistd.h>#include <sstream>#include "../aligners/AbstractBlockAligner.hpp"Go to the source code of this file.
Defines | |
| #define | AUTO_GRID_SIZE (-1) |
| #define | DEFAULT_BLOCK_SIZE 0 |
| #define | DEFAULT_BLOCK_SIZE_STR "0" |
| #define | DEFAULT_GRID_SIZE AUTO_GRID_SIZE |
| #define | DEFAULT_GRID_SIZE_STR "Auto" |
| #define | USAGE_HEADER "Specific Parameters" |
| Usage Strings. | |
| #define | USAGE "\--block-width=W Defines that each Block has H cells vertically. Default: "DEFAULT_BLOCK_SIZE_STR".\n\--block-height=H Defines that each Block has W cells horizontally. Default: "DEFAULT_BLOCK_SIZE_STR".\n\--block-size=H,W Defines the dimensions of each block.\n\--grid-width=W Divides the Grid in H rows of blocks. Default: "DEFAULT_GRID_SIZE_STR".\n\--grid-height=H Divides the Grid in W columns of blocks. Default: "DEFAULT_GRID_SIZE_STR".\n\--grid-size=H,W Defines the dimensions of the grid.\n\" |
| #define | ARG_GRID_WIDTH 0x1001 |
| getopt arguments | |
| #define | ARG_GRID_HEIGHT 0x1002 |
| #define | ARG_BLOCK_HEIGHT 0x1003 |
| #define | ARG_BLOCK_WIDTH 0x1004 |
| #define | ARG_GRID_SIZE 0x1005 |
| #define | ARG_BLOCK_SIZE 0x1006 |
| #define ARG_BLOCK_HEIGHT 0x1003 |
Definition at line 59 of file BlockAlignerParameters.cpp.
| #define ARG_BLOCK_SIZE 0x1006 |
Definition at line 62 of file BlockAlignerParameters.cpp.
| #define ARG_BLOCK_WIDTH 0x1004 |
Definition at line 60 of file BlockAlignerParameters.cpp.
| #define ARG_GRID_HEIGHT 0x1002 |
Definition at line 58 of file BlockAlignerParameters.cpp.
| #define ARG_GRID_SIZE 0x1005 |
Definition at line 61 of file BlockAlignerParameters.cpp.
| #define ARG_GRID_WIDTH 0x1001 |
getopt arguments
Definition at line 57 of file BlockAlignerParameters.cpp.
| #define AUTO_GRID_SIZE (-1) |
Definition at line 33 of file BlockAlignerParameters.cpp.
| #define DEFAULT_BLOCK_SIZE 0 |
Definition at line 35 of file BlockAlignerParameters.cpp.
| #define DEFAULT_BLOCK_SIZE_STR "0" |
Definition at line 36 of file BlockAlignerParameters.cpp.
| #define DEFAULT_GRID_SIZE AUTO_GRID_SIZE |
Definition at line 38 of file BlockAlignerParameters.cpp.
| #define DEFAULT_GRID_SIZE_STR "Auto" |
Definition at line 39 of file BlockAlignerParameters.cpp.
| #define USAGE "\--block-width=W Defines that each Block has H cells vertically. Default: "DEFAULT_BLOCK_SIZE_STR".\n\--block-height=H Defines that each Block has W cells horizontally. Default: "DEFAULT_BLOCK_SIZE_STR".\n\--block-size=H,W Defines the dimensions of each block.\n\--grid-width=W Divides the Grid in H rows of blocks. Default: "DEFAULT_GRID_SIZE_STR".\n\--grid-height=H Divides the Grid in W columns of blocks. Default: "DEFAULT_GRID_SIZE_STR".\n\--grid-size=H,W Defines the dimensions of the grid.\n\" |
Definition at line 45 of file BlockAlignerParameters.cpp.
| #define USAGE_HEADER "Specific Parameters" |
Usage Strings.
Definition at line 44 of file BlockAlignerParameters.cpp.
1.7.6.1