| Back to Multiple platform build/check report for BioC 3.23: simplified long |
|
This page was generated on 2026-01-08 11:35 -0500 (Thu, 08 Jan 2026).
| Hostname | OS | Arch (*) | R version | Installed pkgs |
|---|---|---|---|---|
| nebbiolo1 | Linux (Ubuntu 24.04.3 LTS) | x86_64 | R Under development (unstable) (2025-12-22 r89219) -- "Unsuffered Consequences" | 4815 |
| kjohnson3 | macOS 13.7.7 Ventura | arm64 | R Under development (unstable) (2025-11-04 r88984) -- "Unsuffered Consequences" | 4593 |
| Click on any hostname to see more info about the system (e.g. compilers) (*) as reported by 'uname -p', except on Windows and Mac OS X | ||||
| Package 1962/2332 | Hostname | OS / Arch | INSTALL | BUILD | CHECK | BUILD BIN | ||||||||
| seqsetvis 1.31.0 (landing page) Joseph R Boyd
| nebbiolo1 | Linux (Ubuntu 24.04.3 LTS) / x86_64 | OK | OK | ERROR | |||||||||
| kjohnson3 | macOS 13.7.7 Ventura / arm64 | OK | OK | OK | OK | |||||||||
|
To the developers/maintainers of the seqsetvis package: - Allow up to 24 hours (and sometimes 48 hours) for your latest push to git@git.bioconductor.org:packages/seqsetvis.git to reflect on this report. See Troubleshooting Build Report for more information. - Use the following Renviron settings to reproduce errors and warnings. - If 'R CMD check' started to fail recently on the Linux builder(s) over a missing dependency, add the missing dependency to 'Suggests:' in your DESCRIPTION file. See Renviron.bioc for more information. |
| Package: seqsetvis |
| Version: 1.31.0 |
| Command: /home/biocbuild/bbs-3.23-bioc/R/bin/R CMD check --install=check:seqsetvis.install-out.txt --library=/home/biocbuild/bbs-3.23-bioc/R/site-library --timings seqsetvis_1.31.0.tar.gz |
| StartedAt: 2026-01-08 03:46:37 -0500 (Thu, 08 Jan 2026) |
| EndedAt: 2026-01-08 03:57:07 -0500 (Thu, 08 Jan 2026) |
| EllapsedTime: 629.8 seconds |
| RetCode: 1 |
| Status: ERROR |
| CheckDir: seqsetvis.Rcheck |
| Warnings: NA |
##############################################################################
##############################################################################
###
### Running command:
###
### /home/biocbuild/bbs-3.23-bioc/R/bin/R CMD check --install=check:seqsetvis.install-out.txt --library=/home/biocbuild/bbs-3.23-bioc/R/site-library --timings seqsetvis_1.31.0.tar.gz
###
##############################################################################
##############################################################################
* using log directory ‘/home/biocbuild/bbs-3.23-bioc/meat/seqsetvis.Rcheck’
* using R Under development (unstable) (2025-12-22 r89219)
* using platform: x86_64-pc-linux-gnu
* R was compiled by
gcc (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
GNU Fortran (Ubuntu 13.3.0-6ubuntu2~24.04) 13.3.0
* running under: Ubuntu 24.04.3 LTS
* using session charset: UTF-8
* checking for file ‘seqsetvis/DESCRIPTION’ ... OK
* checking extension type ... Package
* this is package ‘seqsetvis’ version ‘1.31.0’
* 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 ‘seqsetvis’ can be installed ... OK
* 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 ... OK
* checking code 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 contents of ‘data’ directory ... OK
* checking data for non-ASCII characters ... OK
* checking data for ASCII and uncompressed saves ... OK
* checking files in ‘vignettes’ ... OK
* checking examples ... ERROR
Running examples in ‘seqsetvis-Ex.R’ failed
The error most likely occurred in:
> base::assign(".ptime", proc.time(), pos = "CheckExEnv")
> ### Name: ssvSignalHeatmap
> ### Title: heatmap style representation of membership table. instead of
> ### clustering, each column is sorted starting from the left.
> ### Aliases: ssvSignalHeatmap
>
> ### ** Examples
>
> data(CTCF_in_10a_profiles_gr)
>
> #the simplest use
> ssvSignalHeatmap(CTCF_in_10a_profiles_gr)
clustering...
making plot...
> ssvSignalHeatmap(CTCF_in_10a_profiles_gr, show_cluster_bars = FALSE)
clustering...
making plot...
>
> #clustering can be done manually beforehand
> clust_dt = ssvSignalClustering(CTCF_in_10a_profiles_gr, nclust = 3)
clustering...
> ssvSignalHeatmap(clust_dt)
making plot...
>
> ssvSignalHeatmap(clust_dt, max_rows = 20, max_cols = 7)
7 columns were discarded according to max_cols: 7
80 rows were discarded according to max_rows: 20
making plot...
Warning: Raster pixels are placed at uneven horizontal intervals and will be shifted
ℹ Consider using `geom_tile()` instead.
>
> # aggregation, when facet_ is shared by multiple samples
> prof_gr = CTCF_in_10a_profiles_gr
> prof_gr$mark = "CTCF"
> clust_gr = ssvSignalClustering(
+ prof_gr,
+ facet_ = "mark",
+ fun.aggregate = function(x)as.numeric(x > 10)
+ )
clustering...
Error: Aggregating functions should take a vector as input and return a single value (length=1), but they do not, so the result is undefined. Please fix by modifying your function so that a single value is always returned.
Execution halted
Examples with CPU (user + system) or elapsed time > 5s
user system elapsed
ssvFeatureBinaryHeatmap 7.696 0.197 7.894
ssvFetchBam 5.933 0.025 5.905
ssvSignalBandedQuantiles 5.035 0.134 4.954
* checking for unstated dependencies in ‘tests’ ... OK
* checking tests ...
Running ‘testthat.R’
OK
* checking for unstated dependencies in vignettes ... OK
* checking package vignettes ... OK
* checking re-building of vignette outputs ... OK
* checking PDF version of manual ... OK
* DONE
Status: 1 ERROR
See
‘/home/biocbuild/bbs-3.23-bioc/meat/seqsetvis.Rcheck/00check.log’
for details.
seqsetvis.Rcheck/00install.out
############################################################################## ############################################################################## ### ### Running command: ### ### /home/biocbuild/bbs-3.23-bioc/R/bin/R CMD INSTALL seqsetvis ### ############################################################################## ############################################################################## * installing to library ‘/home/biocbuild/bbs-3.23-bioc/R/site-library’ * installing *source* package ‘seqsetvis’ ... ** this is package ‘seqsetvis’ version ‘1.31.0’ ** using staged installation ** R ** data ** inst ** byte-compile and prepare package for lazy loading ** help *** installing help indices ** building package indices ** installing vignettes ** testing if installed package can be loaded from temporary location ** testing if installed package can be loaded from final location ** testing if installed package keeps a record of temporary installation path * DONE (seqsetvis)
seqsetvis.Rcheck/tests/testthat.Rout
R Under development (unstable) (2025-12-22 r89219) -- "Unsuffered Consequences"
Copyright (C) 2025 The R Foundation for Statistical Computing
Platform: x86_64-pc-linux-gnu
R is free software and comes with ABSOLUTELY NO WARRANTY.
You are welcome to redistribute it under certain conditions.
Type 'license()' or 'licence()' for distribution details.
R is a collaborative project with many contributors.
Type 'contributors()' for more information and
'citation()' on how to cite R or R packages in publications.
Type 'demo()' for some demos, 'help()' for on-line help, or
'help.start()' for an HTML browser interface to help.
Type 'q()' to quit R.
>
> ## load dependencies
> library(testthat)
> library(seqsetvis)
Loading required package: ggplot2
> library(data.table)
Attaching package: 'data.table'
The following object is masked from 'package:base':
%notin%
>
> ## test package
> test_check(package = "seqsetvis")
[ FAIL 0 | WARN 3 | SKIP 0 | PASS 1291 ]
[ FAIL 0 | WARN 3 | SKIP 0 | PASS 1291 ]
>
> proc.time()
user system elapsed
271.126 1.809 267.004
seqsetvis.Rcheck/seqsetvis-Ex.timings
| name | user | system | elapsed | |
| add_cluster_annotation | 3.381 | 0.189 | 3.534 | |
| append_ynorm | 0.072 | 0.004 | 0.044 | |
| applyMovingAverage | 0.895 | 0.017 | 0.903 | |
| applySpline | 0.454 | 0.001 | 0.418 | |
| assemble_heatmap_cluster_bars | 0.918 | 0.002 | 0.886 | |
| calc_norm_factors | 0.034 | 0.000 | 0.023 | |
| centerAtMax | 0.296 | 0.002 | 0.236 | |
| centerFixedSizeGRanges | 0.124 | 0.008 | 0.132 | |
| centerGRangesAtMax | 0.595 | 0.047 | 0.532 | |
| clusteringKmeans | 0.041 | 0.003 | 0.028 | |
| clusteringKmeansNestedHclust | 0.110 | 0.006 | 0.074 | |
| col2hex | 0.001 | 0.000 | 0.001 | |
| collapse_gr | 0.643 | 0.006 | 0.650 | |
| convert_collapsed_coord | 0.175 | 0.002 | 0.177 | |
| copy_clust_info | 1.772 | 0.008 | 1.696 | |
| crossCorrByRle | 0.415 | 0.002 | 0.418 | |
| easyLoad_FUN | 0.047 | 0.001 | 0.048 | |
| easyLoad_IDRmerged | 0.038 | 0.002 | 0.040 | |
| easyLoad_bed | 0.114 | 0.002 | 0.116 | |
| easyLoad_broadPeak | 0.034 | 0.000 | 0.035 | |
| easyLoad_narrowPeak | 0.036 | 0.000 | 0.037 | |
| easyLoad_seacr | 0.041 | 0.001 | 0.042 | |
| expandCigar | 0.181 | 0.003 | 0.163 | |
| findMaxPos | 0.041 | 0.004 | 0.035 | |
| fragLen_calcStranded | 1.659 | 0.003 | 1.653 | |
| fragLen_fromMacs2Xls | 0.000 | 0.002 | 0.003 | |
| getReadLength | 0.057 | 0.000 | 0.057 | |
| get_mapped_reads | 0.008 | 0.001 | 0.009 | |
| ggellipse | 0.809 | 0.000 | 0.808 | |
| harmonize_seqlengths | 0.090 | 0.002 | 0.093 | |
| make_clustering_matrix | 0.084 | 0.000 | 0.071 | |
| merge_clusters | 4.183 | 0.008 | 4.103 | |
| prepare_fetch_GRanges | 0.031 | 0.001 | 0.031 | |
| prepare_fetch_GRanges_names | 0.080 | 0.001 | 0.080 | |
| prepare_fetch_GRanges_width | 0.028 | 0.002 | 0.030 | |
| quantileGRangesWidth | 0.003 | 0.000 | 0.003 | |
| reorder_clusters_hclust | 2.366 | 0.028 | 2.303 | |
| reorder_clusters_manual | 1.284 | 0.004 | 1.248 | |
| reorder_clusters_stepdown | 3.278 | 0.100 | 3.294 | |
| reverse_clusters | 2.473 | 0.001 | 2.380 | |
| safeBrew | 0.022 | 0.000 | 0.022 | |
| split_cluster | 2.223 | 0.044 | 2.178 | |
| ssvAnnotateSubjectGRanges | 0.976 | 0.012 | 0.987 | |
| ssvConsensusIntervalSets | 0.325 | 0.005 | 0.330 | |
| ssvFactorizeMembTable | 0.012 | 0.002 | 0.015 | |
| ssvFeatureBars | 0.818 | 0.002 | 0.820 | |
| ssvFeatureBinaryHeatmap | 7.696 | 0.197 | 7.894 | |
| ssvFeatureEuler | 0.826 | 0.003 | 0.829 | |
| ssvFeaturePie | 0.637 | 0.001 | 0.638 | |
| ssvFeatureUpset | 3.245 | 0.004 | 3.250 | |
| ssvFeatureVenn | 1.413 | 0.001 | 1.414 | |
| ssvFetchBam | 5.933 | 0.025 | 5.905 | |
| ssvFetchBamPE | 1.786 | 0.005 | 1.793 | |
| ssvFetchBamPE.RNA | 1.463 | 0.028 | 1.418 | |
| ssvFetchBigwig | 1.348 | 0.006 | 1.351 | |
| ssvFetchGRanges | 0.708 | 0.003 | 0.712 | |
| ssvFetchSignal | 1.427 | 0.005 | 1.433 | |
| ssvMakeMembTable-methods | 0.516 | 0.004 | 0.520 | |
| ssvOverlapIntervalSets | 0.259 | 0.006 | 0.266 | |
| ssvSignalBandedQuantiles | 5.035 | 0.134 | 4.954 | |
| ssvSignalClustering | 3.177 | 0.003 | 2.954 | |
| ssvSignalHeatmap.ClusterBars | 4.201 | 0.003 | 3.940 | |