You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
this warning comes out in a situation that is specific to my application and is too complicated to describe and reproduce here.
However, the warning also appears when the following commands are executed immediately after starting R:
options(warn=1)
library(celldex)
Loading required package: SummarizedExperiment
Loading required package: MatrixGenerics
Loading required package: matrixStats
Attaching package: ‘MatrixGenerics’
The following objects are masked from ‘package:matrixStats’:
colAlls, colAnyNAs, colAnys, colAvgsPerRowSet, colCollapse,
colCounts, colCummaxs, colCummins, colCumprods, colCumsums,
colDiffs, colIQRDiffs, colIQRs, colLogSumExps, colMadDiffs,
colMads, colMaxs, colMeans2, colMedians, colMins, colOrderStats,
colProds, colQuantiles, colRanges, colRanks, colSdDiffs, colSds,
colSums2, colTabulates, colVarDiffs, colVars, colWeightedMads,
colWeightedMeans, colWeightedMedians, colWeightedSds,
colWeightedVars, rowAlls, rowAnyNAs, rowAnys, rowAvgsPerColSet,
rowCollapse, rowCounts, rowCummaxs, rowCummins, rowCumprods,
rowCumsums, rowDiffs, rowIQRDiffs, rowIQRs, rowLogSumExps,
rowMadDiffs, rowMads, rowMaxs, rowMeans2, rowMedians, rowMins,
rowOrderStats, rowProds, rowQuantiles, rowRanges, rowRanks,
rowSdDiffs, rowSds, rowSums2, rowTabulates, rowVarDiffs, rowVars,
rowWeightedMads, rowWeightedMeans, rowWeightedMedians,
rowWeightedSds, rowWeightedVars
Loading required package: GenomicRanges
Loading required package: stats4
Loading required package: BiocGenerics
Attaching package: ‘BiocGenerics’
The following objects are masked from ‘package:stats’:
IQR, mad, sd, var, xtabs
The following objects are masked from ‘package:base’:
anyDuplicated, append, as.data.frame, basename, cbind, colnames,
dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which.max, which.min
Loading required package: S4Vectors
Attaching package: ‘S4Vectors’
The following objects are masked from ‘package:base’:
expand.grid, I, unname
Loading required package: IRanges
Loading required package: GenomeInfoDb
Loading required package: Biobase
Welcome to Bioconductor
Vignettes contain introductory material; view with
'browseVignettes()'. To cite Bioconductor, see
'citation("Biobase")', and for packages 'citation("pkgname")'.
Attaching package: ‘Biobase’
The following object is masked from ‘package:MatrixGenerics’:
rowMedians
The following objects are masked from ‘package:matrixStats’:
anyMissing, rowMedians
NovershternHematopoieticData(ensembl=T)
snapshotDate(): 2021-10-19
see ?celldex and browseVignettes('celldex') for documentation
loading from cache
see ?celldex and browseVignettes('celldex') for documentation
loading from cache
snapshotDate(): 2021-10-20
loading from cache
require(“ensembldb”)
Warning: Unable to map 3426 of 13276 requested IDs.
class: SummarizedExperiment
dim: 9850 211
metadata(0):
assays(1): logcounts
rownames(9850): ENSG00000175899 ENSG00000128274 ... ENSG00000159840
ENSG00000074755
rowData names(0):
colnames(211): GSM609632 GSM609633 ... GSM609841 GSM609842
colData names(3): label.main label.fine label.ont
gc()
Warning: call dbDisconnect() when finished working with a connection
used (Mb) gc trigger (Mb) max used (Mb)
Ncells 8843461 472.3 15254835 814.7 13519245 722.1
Vcells 17372432 132.6 27509457 209.9 22857881 174.4
note that the warning appears only the first time that the above commands are executed after starting R. Also the warning is not generated when calling NovershternHematopoieticData(ensembl=FALSE).
Unlikely to be a celldex problem. Probably comes from any of the dependencies that use SQLite; best guess is that someone forgot to clean up a loose database handle. Some testing indicates that it may be some combination of ensembldb and the Hub packages, but it's hard to nail it down as both of them work fine in isolation.
this warning comes out in a situation that is specific to my application and is too complicated to describe and reproduce here.
However, the warning also appears when the following commands are executed immediately after starting R:
The text was updated successfully, but these errors were encountered: