| 1111 | } |
| 1112 | |
| 1113 | void GenomeCopyNumber::removeLowReadCountWindows(GenomeCopyNumber & controlCopyNumber,int RCThresh) { |
| 1114 | cout << "..will remove all windows with read count in the control less than "<<RCThresh<<"\n"; |
| 1115 | vector<ChrCopyNumber>::iterator it; |
| 1116 | for ( it=chrCopyNumber_.begin() ; it != chrCopyNumber_.end(); it++ ) { |
| 1117 | it->removeLowReadCountWindows(controlCopyNumber.getChrCopyNumber(it->getChromosome()), RCThresh); |
| 1118 | } |
| 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"; |
no test coverage detected