How should I solve the error: comparison (3) is possible only for atomic and list types
0
0
Entering edit mode
17 months ago
paria ▴ 90

Hi all, I'm trying to integrate my single cell dataset using reciprocal pea instead of pca in Seurat. Below is the code I run. The integration was done successfully. However, I'm getting the below error after trying to ScaleData. I couldn't find any solution for this in others posts.

#the code I applied on merged filtered dataset
split_seurat <- SplitObject(filtered_seurat, split.by = "orig.ident")
split_seurat <- lapply(X = split_seurat, FUN = function(x) {
    x <- NormalizeData(x, verbose = FALSE)
    x <- FindVariableFeatures(x, verbose = FALSE)
})

#Data integration
integ_features <- SelectIntegrationFeatures(object.list = split_seurat, nfeatures = 2000)
split_seurat <- lapply(X = split_seurat, FUN = function(x) {
    x <- ScaleData(x, features = integ_features, verbose = FALSE)
    x <- RunPCA(x, features = integ_features, npcs = 80,verbose = FALSE)
})

integ_anchors <- FindIntegrationAnchors(object.list = split_seurat, anchor.features = 1000, reference = c(2, 3, 11, 13), reduction = "rpca", dims = 1:80)
seurat_integrated <- IntegrateData(anchorset = integ_anchors, dims = 1:80)

seurat_integrated < ScaleData(seurat_integrated, verbose = FALSE)

Error in seurat_integrated < ScaleData(seurat_integrated, verbose = FALSE) : 
  comparison (3) is possible only for atomic and list types

Does anybody know why I'm getting this error and how I could solve it? I appreciate any input on this. Thanks, Paria

single ScaleData cell rpca analysis • 2.2k views
ADD COMMENT
1
Entering edit mode

s/</<-/

Low-effort question, low-effort answer

ADD REPLY
1
Entering edit mode

Referring to the line:

seurat_integrated < ScaleData(seurat_integrated, verbose = FALSE)
ADD REPLY

Login before adding your answer.

Traffic: 1540 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6