Changeset 534 for cpp/frams/genetics/geno.cpp
- Timestamp:
- 07/20/16 01:17:14 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
cpp/frams/genetics/geno.cpp
r530 r534 32 32 name = genname; 33 33 txt = comment; 34 setGene AndFormat(genstring,genformat);35 } 36 37 void Geno::setGene AndFormat(const SString& genstring, char genformat)34 setGenesAndFormat(genstring,genformat); 35 } 36 37 void Geno::setGenesAndFormat(const SString& genstring, char genformat) 38 38 { 39 39 mapinshift = 0; … … 151 151 } 152 152 153 void Geno::setGene Only(const SString& g)153 void Geno::setGenesAssumingSameFormat(const SString& g) 154 154 { 155 155 gen = g; … … 174 174 } 175 175 176 SString Geno::getGene AndFormat(void) const176 SString Geno::getGenesAndFormat(void) const 177 177 { 178 178 SString out; … … 211 211 } 212 212 213 SString Geno::getGene (void) const { return gen; }213 SString Geno::getGenes(void) const { return gen; } 214 214 SString Geno::getName(void) const { return name; } 215 215 char Geno::getFormat(void) const { return format; }
Note: See TracChangeset
for help on using the changeset viewer.