Open strawberry098 opened 1 month ago
I had the same issue. Here's how I hacked them to only have 1 image each:
ifnb.list <- SplitObject(temp, split.by = "orig.ident")
#Each one keeps all 4 images:
ifnb.list[[1]]
# An object of class Seurat
# 12345 features across 2174 samples within 1 assay
# Active assay: Spatial (12345 features, 0 variable features)
# 4 images present: Uninf_1, Infect_2, Uninf_3, Infect_4
# Keep only images for each one:
for(i in 1:length(ifnb.list)) {
ifnb.list[[i]]@images <- ifnb.list[[i]]@images[names(ifnb.list)[i]]
}
I have a Seurat Object that contains multiple 10x Visium spatial transcriptomics datasets.
I used
SplitObject
to split the Seurat Object by sample, but when callingsplit_seuobj$sample1
, the spatial.images still lists all samples, instead of only sample.1How can I resolve this issue? This is causing some downstream analysis issues.