Changes between Version 45 and Version 46 of SOP/scRNA-seq
- Timestamp:
- 05/05/21 09:28:39 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SOP/scRNA-seq
v45 v46 224 224 # cluster/cell type from a single cell RNA-seq data-set. The counts matrix 225 225 # is the starting point. From a Seurat object clusterCells, it can be extracted as follows: 226 allgenesCT<-t(as.data.frame(clusterCells@assays$RNA@counts)) # Un-normalized 226 allgenesCT<-t(as.data.frame(clusterCells@assays$RNA@counts)) # Un-normalized counts. 227 227 allgenesCT<-as.data.frame(allgenesCT) 228 228 ngenes<-ncol(allgenesCT)