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
Error in .combine_DFrame_rows(x, objects, strict.colnames = TRUE, use.names = use.names, :
the objects to combine must be DFrame objects or derivatives
In addition: Warning messages:
1: Not a validObject(): no slot of name "elementType" for this object of class "GRanges"
2: Not a validObject(): no slot of name "elementType" for this object of class "GRanges"
The following worked as a workaround:
# Re-implementMutationTimeR::addMutTime
i = info(header(vcf))
tmp = as.data.frame(i)
tmp$Number = as.character(tmp$Number)
i = DataFrame(tmp)
info(header(vcf)) <- rbind(i, MutationTimeR:::mtHeader()) # calling internal function
info(vcf) <- cbind(info(vcf), mt$V)
This doesn't resolve the various warnings for elementType/GRanges throughout package functions, probably due to changes in the GRanges package.
─ Session info ────────────────────────────────────────────────────────────────────────────────
setting value
version R version 4.3.1 (2023-06-16)
os macOS Sonoma 14.0
system aarch64, darwin20
ui RStudio
language (EN)
collate en_US.UTF-8
ctype en_US.UTF-8
tz America/New_York
date 2023-12-01
rstudio 2023.09.1+494 Desert Sunflower (desktop)
pandoc NA
Hi, your example code leads to an error:
The message is:
The following worked as a workaround:
This doesn't resolve the various warnings for elementType/GRanges throughout package functions, probably due to changes in the GRanges package.
I'm running Bioconductor 3.18. Here's session info:
The text was updated successfully, but these errors were encountered: