############################################################################## ############################################################################## ### ### Running command: ### ### /home/biocbuild/R/R-4.3.1/bin/R CMD check --install=check:GenomicRanges.install-out.txt --library=/home/biocbuild/R/R-4.3.1/site-library --no-vignettes --timings GenomicRanges_1.54.1.tar.gz ### ############################################################################## ############################################################################## * using log directory ‘/home/biocbuild/bbs-3.18-bioc/meat/GenomicRanges.Rcheck’ * using R version 4.3.1 (2023-06-16) * using platform: aarch64-unknown-linux-gnu (64-bit) * R was compiled by gcc (GCC) 10.3.1 GNU Fortran (GCC) 10.3.1 * running under: openEuler 22.03 (LTS-SP1) * using session charset: UTF-8 * using option ‘--no-vignettes’ * checking for file ‘GenomicRanges/DESCRIPTION’ ... OK * this is package ‘GenomicRanges’ version ‘1.54.1’ * package encoding: UTF-8 * checking package namespace information ... OK * checking package dependencies ... OK * checking if this is a source package ... OK * checking if there is a namespace ... OK * checking for hidden files and directories ... OK * checking for portable file names ... OK * checking for sufficient/correct file permissions ... OK * checking whether package ‘GenomicRanges’ can be installed ... OK * used C compiler: ‘gcc (GCC) 10.3.1’ * checking installed package size ... OK * checking package directory ... OK * checking ‘build’ directory ... OK * checking DESCRIPTION meta-information ... OK * checking top-level files ... OK * checking for left-over files ... OK * checking index information ... OK * checking package subdirectories ... NOTE Problems with news in ‘NEWS’: Cannot process chunk/lines: SIGNIFICANT USER-VISIBLE CHANGES Cannot process chunk/lines: DEPRECATED AND DEFUNCT * checking R files for non-ASCII characters ... OK * checking R files for syntax errors ... OK * checking whether the package can be loaded ... OK * checking whether the package can be loaded with stated dependencies ... OK * checking whether the package can be unloaded cleanly ... OK * checking whether the namespace can be loaded with stated dependencies ... OK * checking whether the namespace can be unloaded cleanly ... OK * checking loading without being on the library search path ... OK * checking dependencies in R code ... OK * checking S3 generic/method consistency ... OK * checking replacement functions ... OK * checking foreign function calls ... OK * checking R code for possible problems ... OK * checking Rd files ... OK * checking Rd metadata ... OK * checking Rd cross-references ... OK * checking for missing documentation entries ... OK * checking for code/documentation mismatches ... OK * checking Rd \usage sections ... OK * checking Rd contents ... OK * checking for unstated dependencies in examples ... OK * checking line endings in C/C++/Fortran sources/headers ... OK * checking compiled code ... NOTE Note: information on .o files is not available * checking files in ‘vignettes’ ... OK * checking examples ... ERROR Running examples in ‘GenomicRanges-Ex.R’ failed The error most likely occurred in: > base::assign(".ptime", proc.time(), pos = "CheckExEnv") > ### Name: genomicvars > ### Title: Manipulating genomic variables > ### Aliases: genomicvars genomicvariables coerce,RleList,GRanges-method > ### coerce,RleViewsList,GRanges-method bindAsGRanges mcolAsRleList > ### binnedAverage > ### Keywords: manip > > ### ** Examples > > ## --------------------------------------------------------------------- > ## A. TWO WAYS TO REPRESENT A GENOMIC VARIABLE > ## ----------------------------------------------------------------- > > ## 1) As a named RleList object > ## ---------------------------- > ## Let's create a genomic variable in the "named RleList" form: > library(BSgenome.Scerevisiae.UCSC.sacCer2) Loading required package: BSgenome Loading required package: Biostrings Loading required package: XVector Attaching package: ‘Biostrings’ The following object is masked from ‘package:base’: strsplit Loading required package: BiocIO Loading required package: rtracklayer Attaching package: ‘rtracklayer’ The following object is masked from ‘package:BiocIO’: FileForFormat > set.seed(55) > my_var <- RleList( + lapply(seqlengths(Scerevisiae), + function(seqlen) { + tmp <- sample(50L, seqlen, replace=TRUE) + Rle(cumsum(tmp - rev(tmp))) + } + ), + compress=FALSE) > my_var RleList of length 18 $chrI integer-Rle of length 230208 with 225554 runs Lengths: 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 Values : -1 2 45 7 15 25 74 59 ... 74 25 15 7 45 2 -1 0 $chrII integer-Rle of length 813178 with 796736 runs Lengths: 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 Values : -44 -66 -75 -87 -88 -80 -109 ... -88 -87 -75 -66 -44 0 $chrIII integer-Rle of length 316617 with 310186 runs Lengths: 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 Values : -30 -33 -25 -50 -25 -37 -2 -44 ... -2 -37 -25 -50 -25 -33 -30 0 $chrIV integer-Rle of length 1531919 with 1501028 runs Lengths: 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 Values : 28 61 22 41 80 47 70 ... 80 41 22 61 28 0 $chrV integer-Rle of length 576869 with 565604 runs Lengths: 1 1 1 1 1 1 1 1 ... 1 1 1 1 1 1 1 1 Values : 5 19 -11 -29 -24 -13 -10 -21 ... -10 -13 -24 -29 -11 19 5 0 ... <13 more elements> > > ## 2) As a metadata column on a disjoint GRanges object > ## ---------------------------------------------------- > gr1 <- bindAsGRanges(my_var=my_var) * checking for unstated dependencies in ‘tests’ ... OK * checking tests ... Running ‘run_unitTests.R’ OK * checking for unstated dependencies in vignettes ... OK * checking package vignettes in ‘inst/doc’ ... OK * checking running R code from vignettes ... SKIPPED * checking re-building of vignette outputs ... SKIPPED * checking PDF version of manual ... OK * DONE Status: 1 ERROR, 2 NOTEs See ‘/home/biocbuild/bbs-3.18-bioc/meat/GenomicRanges.Rcheck/00check.log’ for details.