| 1755 | } |
| 1756 | |
| 1757 | void* ChrCopyNumber_calculateBreakpoint_wrapper(void *arg) |
| 1758 | { |
| 1759 | ChrCopyNumberCalculateBreakpointArgWrapper* warg = (ChrCopyNumberCalculateBreakpointArgWrapper*)arg; |
| 1760 | int result = warg->chrCopyNumber.calculateBreakpoints(warg->breakPointThreshold, 0, warg->breakPointType); |
| 1761 | if (result <= 0) { |
| 1762 | cerr << "..failed to run segmentation on chr" << warg->chrCopyNumber.getChromosome() << "\n"; |
| 1763 | } |
| 1764 | return NULL; |
| 1765 | } |
| 1766 | |
| 1767 | void* ChrCopyNumber_calculateBAFBreakpoint_wrapper(void *arg) |
| 1768 | { |
nothing calls this directly
no test coverage detected