Changeset 999 for cpp/frams/genetics/genoconv.h
- Timestamp:
- 07/13/20 13:51:43 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/genoconv.h
r988 r999 34 34 35 35 /// Base class for all Geno Converters. 36 /// In constructor you have to set public fields 37 /// indicating your identity and supported formats. 36 /// In constructor you have to set public fields indicating your identity and supported formats. 38 37 /// Each converter serves one in-out format pair. 39 /// Instance of your converter should be registered 40 /// in GenoConvManager. 38 /// The instance of your converter should be registered in GenoConvManager. 41 39 class GenoConverter 42 40 { 43 41 public: 44 42 const char *name; //< converter name (short) 45 SString in_format, //< input format, e g. "1"46 out_format; //< output format, e g. "0"43 SString in_format, //< input format, e.g. "1" 44 out_format; //< output format, e.g. "0" 47 45 paInt enabled; //< don't touch this! (used by configuration module) 48 46 paInt mapsupport; //< set to 1 if your converter supports genotype mapping
Note: See TracChangeset
for help on using the changeset viewer.