Closed asmlgkj closed 2 months ago
Thank you for reporting this issue. I've tested the following code on my end:
library(SeuratExtend)
genes <- c("CD3D","CD14","CD79A")
cells <- colnames(pbmc)[pbmc$cluster %in% c("B cell", "Mono CD14", "CD8 T cell")]
VlnPlot2(pbmc, features = genes, group.by = "cluster", cell = cells,
stat.method = "wilcox.test", hide.ns = TRUE)
The plot was generated without any issues. I'm also using Seurat v5. Here's part of my session info:
R version 4.4.0 (2024-04-24)
Platform: x86_64-pc-linux-gnu
Running under: Ubuntu 20.04.6 LTS
time zone: Europe/Brussels
tzcode source: system (glibc)
attached base packages:
[1] stats graphics grDevices utils datasets methods base
other attached packages:
[1] dplyr_1.1.4 ggpubr_0.6.0 ggplot2_3.5.1 reshape2_1.4.4
[5] SeuratExtend_1.0.0 SeuratObject_5.0.2 sp_2.1-4 SeuratExtendData_0.2.0
My suspicion is that this might be related to the select
function. Multiple packages have a select
function, and it's possible that when VlnPlot2
is trying to use dplyr::select
internally, it's being masked by another package's select
function. However, I'm not sure which package might be causing this.
Could you please try the following:
sessionInfo()
? This will help us identify any potential conflicts or version mismatches.This information will help me pinpoint the source of the problem and provide a more targeted solution. Thank you for your patience and cooperation in resolving this issue.
thanks a lot, after did as your suggestions, it is fine now. I also do not know whereis the problem
I've recently updated the VlnPlot2
function to explicitly specify that it's using the select
function from the dplyr package.
Thanks a lot for this great package. seurat v5 example code