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

Method removeLargeExons

src/ChrCopyNumber.cpp:1267–1276  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1265
1266
1267int ChrCopyNumber::removeLargeExons(float threshold) {
1268 int howManyRemoved = 0;
1269 for (int i =0; i< length_; i++) {
1270 if (ends_[i]-coordinates_[i]>threshold) {
1271 howManyRemoved++;
1272 readCount_[i]=NA;
1273 }
1274 }
1275 return howManyRemoved;
1276}
1277
1278void ChrCopyNumber::recalcFlanks(int telo_centromeric_flanks, int minNumberOfWindows) {
1279 int maxRegionLengthToDelete = int(telo_centromeric_flanks/step_);

Callers 1

mainFunction · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected