| 418 | } |
| 419 | |
| 420 | int GenomeCopyNumber::findIndex (std::string const& chr) { |
| 421 | if (chromosomesInd_.find(chr) == chromosomesInd_.end()) {return NA;} |
| 422 | return chromosomesInd_.find(chr)->second; |
| 423 | } |
| 424 | |
| 425 | void GenomeCopyNumber::recalculateRatio (float contamination) { |
| 426 | if (contamination >= 1 || contamination <= 0) { |
no outgoing calls
no test coverage detected