After running cnvkit.py segment
, I've noticed that some segments appear to overlap with each other. For instance,
18 18520842 60987290 BCL2 0.83552 424 131.823
18 60987231 78016748 BCL2 0.04287 175 54.1546
The end of the first segment (60,987,290) overlaps with the beginning of the second segment (60,987,231). This is expected? I was expecting that the segments would be non-overlapping and the reason why is an issue is when overlapping mutations onto these segments. The mutation may be associated with multiple copy number predictions which should not be the case.
Thanks,
Thanks. My guess is that your target BED file contains overlapping intervals. Using the
--split
option will merge the overlapping intervals and then divide them evenly, which should solve your problem.Thanks. Using the
--split
option seems to have solved the overlapping intervals.+1 for the detailed answer , I guess the OP should have a workaround now and if these answers solves the problem suing the
--split
parameter and changing the segmentation method, it would be nice to get the follow up reply from him. It keeps up with the interest of the forum.