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

Method removeLowReadCountWindows

src/GenomeCopyNumber.cpp:1113–1119  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1111}
1112
1113void 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
1121void 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";

Calls 2

getChrCopyNumberMethod · 0.80
getChromosomeMethod · 0.80

Tested by

no test coverage detected