Load Count Matrix
0
0
Entering edit mode
4.8 years ago
Bios ▴ 10

Hi,

I'm following this tutorial here: https://satijalab.org/seurat/v3.0/pbmc3k_tutorial.html

I am getting an error when I use CreateSeuratObject. Is there something I should do when I'm loading in the data?

stemcells.data <- load(file = "/Users/Downloads/kowalcyzk_gene_counts")
stemcells <- CreateSeuratObject(raw.data = stemcells.data, min.cells = 3, min.genes = 200, project = "STEM")

Error in base::colSums(x, na.rm = na.rm, dims = dims, ...) : 
  'x' must be an array of at least two dimensions

Thanks

R • 3.0k views
ADD COMMENT
2
Entering edit mode

load is a function in R to reload a saved (.Rdata) Dataset. It is not similar as read.table or read.csv. If this saved dataset contains the counts, it is under a different name than stemcell.data. So check with ls() what you all have loaded into your R session, see if you can find a counts object somewhere, or show us what ls() gives you.

stemcells.data <- load(file = "/Users/Downloads/kowalcyzk_gene_counts")

ls()
ADD REPLY
1
Entering edit mode

I highly doubt that "/Users/kellychau/Downloads/kowalcyzk_gene_counts" is your counts... it looks like a directory.

ADD REPLY
0
Entering edit mode

Output of head(stemcells.data)?

By the way, I noticed that three of your previous question were deleted after receiving answers. Did you do that? If so, it is bad practice and disrespectful towards the commentators. I reopened all of them. Please stop doing that or we might eventually consider suspending your account. If it was not you then please do not feel offended and simply ignore my comment.

ADD REPLY

Login before adding your answer.

Traffic: 3173 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