Changeset 240 for cpp/frams/vm/classes/genoobj.cpp
- Timestamp:
- 04/30/14 20:25:32 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/vm/classes/genoobj.cpp
r222 r240 13 13 {"Geno",1,14,"Geno","All information about a single genotype.\nThis is a genetics-only object which does not contain any performance data. See also: Genotype class"}, 14 14 {"name",0,PARAM_NOSTATIC,"Name","s 0 40",GETSET(name),}, 15 {"rawgenotype",0,PARAM_NOSTATIC +PARAM_READONLY,"Raw genotype","s 1",GETONLY(genotype),"Genotype, excluding the format specifier"},15 {"rawgenotype",0,PARAM_NOSTATIC | PARAM_READONLY,"Raw genotype","s 1",GETONLY(genotype),"Genotype, excluding the format specifier"}, 16 16 {"info",0,PARAM_NOSTATIC,"Info","s 1",GETSET(info),"Additional information or comments",}, 17 {"format",0,PARAM_NOSTATIC +PARAM_READONLY,"Format","d",GETONLY(format),"Genotype format",},18 {"genotype",0,PARAM_NOSTATIC +PARAM_READONLY,"Genotype","s 1",GETONLY(string),},19 {"isValid",0,PARAM_NOSTATIC +PARAM_READONLY,"Valid","d 0 1",GETONLY(isvalid),},17 {"format",0,PARAM_NOSTATIC | PARAM_READONLY,"Format","d",GETONLY(format),"Genotype format",}, 18 {"genotype",0,PARAM_NOSTATIC | PARAM_READONLY,"Genotype","s 1",GETONLY(string),}, 19 {"isValid",0,PARAM_NOSTATIC | PARAM_READONLY,"Valid","d 0 1",GETONLY(isvalid),}, 20 20 {"getConverted",0,PARAM_NOSTATIC,"get converted genotype","p oGeno(d format)",PROCEDURE(p_getconvert),}, 21 {"f0genotype",0,PARAM_NOSTATIC +PARAM_READONLY,"f0 genotype","s 1",GETONLY(f0genotype),"converted to f0 genotype",},21 {"f0genotype",0,PARAM_NOSTATIC | PARAM_READONLY,"f0 genotype","s 1",GETONLY(f0genotype),"converted to f0 genotype",}, 22 22 {"new",0,0,"create new empty object","p oGeno()",PROCEDURE(p_new),}, 23 23 {"newFromString",0,0,"create new object from supplied string argument","p oGeno(s genotype)",PROCEDURE(p_newfromstring),}, 24 24 {"newFrom",0,0,"create new object","p oGeno(s genotype,d format,s name,s description)",PROCEDURE(p_newfrom),}, 25 {"autoname",0,PARAM_NOSTATIC +PARAM_READONLY,"Autogenerated name","s",GETONLY(autoname),},26 {"toVector",0,PARAM_READONLY +PARAM_NOSTATIC,"serialization support","oVector",GETONLY(toVector),},25 {"autoname",0,PARAM_NOSTATIC | PARAM_READONLY,"Autogenerated name","s",GETONLY(autoname),}, 26 {"toVector",0,PARAM_READONLY | PARAM_NOSTATIC,"serialization support","oVector",GETONLY(toVector),}, 27 27 {"newFromVector",0,0,"serialization support","p oGeno(oVector)",PROCEDURE(p_newfromvector),}, 28 28 {0,0,0,},
Note: See TracChangeset
for help on using the changeset viewer.