Error in base::colSums(x,na.rm=na.rm,dims=dims,...):'x'must be numeric This is the code I'musing:hfd<-CreateSeuratObject(raw.data=cell_matrix,min.cells=3,min.genes=200,project="normal_vs_hf") While the error is thrown when running CreateSeuratObject, it is the data.frame that ...
Error in seq.default(rx[1], rx[2], length.out = grid.n) : 'from' must be a finite number From the different comments above I thought about eliminating any duplicated columns from emat and nmat. I did the following: emat<-emat[,-which(duplicated(as.matrix(emat), MARGIN = 2))] ...