/* * ParseHomologiesAction.def * * Created on: Jun 24, 2013 * Author: heber */ // all includes and forward declarations necessary for non-integral types below #include "Parameters/Validators/Specific/FilePresentValidator.hpp" // i.e. there is an integer with variable name Z that can be found in // ValueStorage by the token "Z" -> first column: int, Z, "Z" // "undefine" if no parameters are required, use (NOPARAM_DEFAULT) for each (undefined) default value #define paramtypes (boost::filesystem::path) #define paramtokens ("parse-homologies") #define paramdescriptions ("path to file containing homology container to parse") #define paramdefaults (NOPARAM_DEFAULT) #define paramreferences (homology_file) #define paramvalids \ (FilePresentValidator()) #undef statetypes #undef statereferences // some defines for all the names, you may use ACTION, STATE and PARAMS #define CATEGORY Potential #define MENUNAME "potential" #define MENUPOSITION 1 #define ACTIONNAME ParseHomologies #define TOKEN "parse-homologies" // finally the information stored in the ActionTrait specialization #define DESCRIPTION "parses homologies present in a file into World's container" #undef SHORTFORM