MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / calculateLogRatio

Method calculateLogRatio

src/GenomeDensity.cpp:232–238  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

230}
231
232void 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
240GenomeDensity::~GenomeDensity(void)
241{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected