| 230 | } |
| 231 | |
| 232 | void GenomeDensity::calculateLogRatio(GenomeDensity controlGD, std::string type) { |
| 233 | map<string,ChrDensity>::iterator it; |
| 234 | for ( it=gd_.begin() ; it != gd_.end(); it++ ) { |
| 235 | cout << "..calculating density ratio for " << (*it).first << "\n"; |
| 236 | (*it).second.calculateLogRatio(controlGD.gd_.find((*it).first)->second,type); |
| 237 | } |
| 238 | } |
| 239 | |
| 240 | GenomeDensity::~GenomeDensity(void) |
| 241 | { |
nothing calls this directly
no outgoing calls
no test coverage detected