我正在尝试使用 Seurat 中的 DoHeatmap 函数来显示一些已定义集群中许多基因的表达。B_cells 是我的修拉对象。
tfs <- c("PRDM1", "PAX5", "BACH2")
DoHeatmap(B_cells, features=tfs)
我又收到了这个错误;
Error in data.frame(group = sort(x = group.use), x = x.divs) :
arguments imply differing number of rows: 10411, 0
当我查看 Seurat 对象中的行数和列数时;
nrow(B_cells) = 19651
ncol(B_cells) = 10151
对不起,如果这是一个愚蠢的问题,但我已经坚持了一段时间了。
编辑回溯():
3: stop(gettextf("arguments imply differing number of rows: %s",
paste(unique(nrows), collapse = ", ")), domain = NA)
2: data.frame(group = sort(x = group.use), x = x.divs)
1: DoHeatmap(B_cells, features = genes)