| 221 | } |
| 222 | |
| 223 | void GenomeDensity::printDensity(std::string key,int i,int j) { |
| 224 | if (gd_.find(key)==gd_.end()) |
| 225 | return ; |
| 226 | |
| 227 | for (int k = i;k<j;k++) |
| 228 | cout << gd_.find(key)->second.getDensityAtI(k) << "\n"; |
| 229 | |
| 230 | } |
| 231 | |
| 232 | void GenomeDensity::calculateLogRatio(GenomeDensity controlGD, std::string type) { |
| 233 | map<string,ChrDensity>::iterator it; |
nothing calls this directly
no test coverage detected