Ignore:
Timestamp:
07/13/20 13:51:43 (4 years ago)
Author:
Maciej Komosinski
Message:

More consistent usage of "shapetype" (vs. "shape")

File:
1 edited

Legend:

Unmodified
Added
Removed
  • cpp/frams/genetics/genoconv.h

    r988 r999  
    3434
    3535/// 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.
    3837/// 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.
    4139class GenoConverter
    4240{
    4341public:
    4442        const char *name;       //< converter name (short)
    45         SString in_format,      //< input format, eg. "1"
    46                 out_format;     //< output format, eg. "0"
     43        SString in_format,      //< input format, e.g. "1"
     44                out_format;     //< output format, e.g. "0"
    4745        paInt enabled;  //< don't touch this! (used by configuration module)
    4846        paInt mapsupport; //< set to 1 if your converter supports genotype mapping
Note: See TracChangeset for help on using the changeset viewer.