Skip to content

[Bioc-devel] a warning we may not need any more?

1 message · Hervé Pagès

#
Hi Vince,

Good idea. I made that change in GenomeInfoDb 1.1.26:

   library(GenomeInfoDb)
   x <- Seqinfo(seqnames=c("chr1", "chr2", "chr3", "chrM"),
                seqlengths=c(100, 200, NA, 15),
                isCircular=c(NA, FALSE, FALSE, TRUE),
                genome="toy")

   y <- Seqinfo(seqnames=c("chr3", "chr4", "chrM"),
                seqlengths=c(300, NA, 15))

   merge(x, y)  # warning

   genome(y) <- genome(x)[[1]]
   merge(x, y)  # no warning

Cheers,
H.
On 10/09/2014 12:04 PM, Vincent Carey wrote: