| 1119 | } |
| 1120 | |
| 1121 | void GenomeCopyNumber::removeLowReadCountWindowsFromControl(int RCThresh) { |
| 1122 | cout << "..will process the control file as well: removing all windows with read count in the control less than "<<RCThresh<<"\n"; |
| 1123 | vector<ChrCopyNumber>::iterator it; |
| 1124 | for ( it=chrCopyNumber_.begin() ; it != chrCopyNumber_.end(); it++ ) { |
| 1125 | it->removeLowReadCountWindows(RCThresh); |
| 1126 | } |
| 1127 | } |
| 1128 | |
| 1129 | int GenomeCopyNumber::getNumberOfChromosomes() { |
| 1130 | return chrCopyNumber_.size(); |
no test coverage detected