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
When trying to load the pbmcsa dataset, it throws an error. I guess here LoadData actually does preemptively the UpdateSeuratObject, unlike in #86. But it promptly fails:
>obj<-SeuratData::LoadData("pbmcsca")
ValidatingobjectstructureUpdatingobjectslotsEnsuringkeysareintheproperstructureWarning:AssayRNAchangingfromAssaytoAssayEnsuringkeysareintheproperstructureEnsuringfeaturenamesdon't have underscores or pipesUpdating slots in RNAValidating object structure for Assay ‘RNA’Object representation is consistent with the most current Seurat versionError in as.vector(x) : no method for coercing this S4 class to a vector
but if I do the trick, mentioned in #70 (comment),
namely:
> library(pbmcsca.SeuratData)
> data("pbmcsca")
>pbmcscaError:PleaserunUpdateSeuratObjectonyourobject>pbmcsca<- UpdateSeuratObject(pbmcsca)
ValidatingobjectstructureUpdatingobjectslotsEnsuringkeysareintheproperstructureWarning:AssayRNAchangingfromAssaytoAssayEnsuringkeysareintheproperstructureEnsuringfeaturenamesdon't have underscores or pipesUpdating slots in RNAValidating object structure for Assay ‘RNA’Object representation is consistent with the most current Seurat version
... then it works:
>pbmcscaAnobjectofclassSeurat33694featuresacross31021sampleswithin1assayActiveassay: RNA (33694features, 0variablefeatures)
2layerspresent:counts, data
The text was updated successfully, but these errors were encountered:
just so the developers are aware, i'm experiencing this issue right now with the pbmc3k dataset using the most recent CRAN version of Seurat and the most recent GitHub version of SeuratData.
When trying to load the
pbmcsa
dataset, it throws an error. I guess hereLoadData
actually does preemptively theUpdateSeuratObject
, unlike in #86. But it promptly fails:but if I do the trick, mentioned in #70 (comment),
namely:
... then it works:
The text was updated successfully, but these errors were encountered: