IRanges icon indicating copy to clipboard operation
IRanges copied to clipboard

Foundation of integer range manipulation in Bioconductor

Results 15 IRanges issues
Sort by recently updated
recently updated
newest added

@jwokaty please review this PR I have reviewed it once using the checklist and make sure that `R CMD build` contains html. After your review we will ask @hpages for...

It would do `compress=TRUE` if the input is not too big, otherwise it would fallback to `compress=FALSE`. For example: ``` RleList(Rle(8, 2e9), Rle(5, 200), compress=NA) ``` would do `RleList(Rle(8, 2e9),...

Hi Herve, Here is the pull request for fixing ALTREP problem in IRange constructor. The main changes are: 1. Use GET/SET function to access data from a vector 2. Remove...

Large numbers are often divided into groups using a delimeter to ease of reading. English often uses comma to create groups of three for thousands, millions etc. IUPAC and International...

See the Biostars thread at: https://support.bioconductor.org/p/9140415 I have checked the fix proposed by story.benjamin and this fixes the behaviour of the function and would propose a fix Correct function below:...

This is a spin-off from issue #43: ``` library(BSgenome.Hsapiens.UCSC.hg38) genome

``` library(IRanges) .zoom0 length(x) && length(z) != 1L) stop("'z' is longer than 'x'") if (anyNA(z) || min(z)

(Moving this from the devteam-bioc Slack to GitHub) Jiefei wrote on Slack: > Hi Herve, I would like to make some changes to the IRanges package but I might miss...

Just an idea -- where possible, propagate mcols(). For example, `mcols(c(a,b)) = rbind(mcols(a), mcols(b))` (IRanges already does this) `mcols(intersect(a,b))[i, ] = cbind(mcols(a)[j, ], mcols(b)[k, ])` where j is the row...