添加链接
link管理
链接快照平台
  • 输入网页链接,自动生成快照
  • 标签化管理网页链接

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement . We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hi there,

When I try to run:

sce_10x<- ssc.reduceDim(sce_10x,method="pca",seed = 9997, assay.name="counts")

I get the error above. Could you help fixing it?

Thanks!

I think the bug is fixed now. Can you try it again?

In the last implementation, the assay data sored in the SingleCellExperiment object (sce_10X here) was assumed to be class matrix, so the transpose function from base package (base::t()) was used. Maybe in your data, the assay data is compressed matrix class such as class dgTMatrix, so base::t() didn't work. I changed it to BiocGenerics::t(). In my end, it works well now.