I want to understand what the function coverage does to an IRange. for example the codes below:
ir <- IRanges (1:3, width = 3) ir IRanges object with 3 ranges and 0 metadata columns: start end width [1] 1 3 3 [2] 2 4 3 [3] 3 5 3 coverage (ir) integer-Rle of length 5 with 5 runs Lengths: 1 1 1 1 1 Values : 1 2 3 2 1
why the values repeats itself like 123 then 21