monocle中遇到的问题

在做单细胞分析时,无论是用monocle3还是2,都会出现各种各样的问题,记录一下解决过程

monocle3:

问题1

2.png

在用cluster_cellsfind_gene_modules时,会遇到和 leiden相关的问题。
解决办法:
虽然用 cluster_cells(cds, cluster_method = c('louvain')) 可以暂时跳过这个问题,但是需要设置 resolution的时候就会报错,因为默认只有leiden才能设置这个参数。所以这个问题还是得解决
解决办法可以参考 Github的这个tissue
这个问题一般是包的版本问题
1, 下载leidenbase
devtools::install_github("cole-trapnell-lab/leidenbase")
2, 从Archive/igraph下载 igraph 并且本地安装
devtools::install_local("igraph_1.5.0.tar.gz")
环境:
• R version 4.2.0
• igraph version 1.5.0
• leidenbase version 0.1.25
• monocle3 version 1.3.4

monocle2:

问题2

2真的各种各样的问题,猜测是包更新了和之前的代码不兼容。
可以参考这两个帖子
1,链接1
2,链接2

报错点:
1, 运行ordercell的时候报错:
Error in if (class(projection) != “matrix”) projection <- as.matrix(projection) : the condition has length > 1
2, 运行BEAM的时候报错: 'length(x) = 2 > 1' in coercion to 'logical(1)'
3, 运行BEAM的时候报错:Error in if (progenitor_method == “duplicate”) { : the condition has length > 1

2.26版本(只解决了第一个问题,后面因为2.26的太繁琐了,就不想改了,换成2.24了)
解决办法:

  1. 链接1的代码下载下来,做以下修改
    ○ 把整段reduceDimension函数注释掉
    ○ 将reducedDimk改成reducedDimK(小写k改成大写K)
    ○ 将orderCells函数中的reducedDimK(cds) <- K_oldreducedDimW(cds) <- old_W注释掉,即1158和1162行注释
  2. 安装igraph包,并且library
  3. 重新source该代码

2.24版本:

  1. 卸载原来的monocle包,remove.packages("monocle")
  2. 自己去搜索相关网站下载各个版本的安装包(此处是0.24)
  3. 修改里面的R文件:
    monocle/R/order_cell.R
    if(class(projection) != 'matrix') projection <- as.matrix(projection) 改为
    projection <- as.matrix(projection)
    monocle/R /BEAM.R
    if (progenitor_method == "duplicate") { } else if (progenitor_method == "sequential_split") { } 改为 if ('duplicate' %in% progenitor_method){} else if('sequential_split' %in% progenitor_method){}
    monocle/R /utils.R
    class(x) %in% c("dgCMatrix", "dgTMatrix") 改为any(class(x) %in% c("dgCMatrix", "dgTMatrix"))
    并且将这两行注释:
    if (class(cellData) != "matrix" && isSparseMatrix(cellData) == FALSE){ stop("Error: argument cellData must be a matrix (either sparse from the Matrix package or dense)") }
  4. 压缩 tar zcvf monocle_2.24.0.tar.gz monocle_2.24.0
  5. 本地安装 devtools::install_local("monocle_2.24.0.tar.gz"),跳过更新

另外,跑BEAM的plot_genes_branched_heatmap时候也会遇到问题,我就懒得改包里得代码了,直接重新写一个函数调用就好,可以参考文末代码

2.6和2.4的解决方案还会有一点不一样,但解决思路基本是一样的,就是把出错的函数一步一步拆解,去运行,直到找到报错的那一行代码
授人以鱼不如授人以渔,代码文件就不上传了,谢绝伸手党,谢谢。

new_plot_genes_branched_heatmap <- function (cds_subset, branch_point = 1, branch_states = NULL, 
          branch_labels = c("Cell fate 1", "Cell fate 2"), cluster_rows = TRUE, 
          hclust_method = "ward.D2", num_clusters = 6, hmcols = NULL, 
          branch_colors = c("#979797", "#F05662", "#7990C8"), add_annotation_row = NULL, 
          add_annotation_col = NULL, show_rownames = FALSE, use_gene_short_name = TRUE, 
          scale_max = 3, scale_min = -3, norm_method = c("log", "vstExprs"), 
          trend_formula = "~sm.ns(Pseudotime, df=3) * Branch", return_heatmap = FALSE, 
          cores = 1, ...) 
{
  
  # cds_subset = cdsc[row.names(subset(BEAM_res,qval < 1e-4)),]
  # branch_states = NULL
  # branch_point = 1
  # num_clusters = 4
  # 
  # progenitor_method = "duplicate"
  # branch_labels = c("Cell fate 1", "Cell fate 2")
  # cluster_rows = TRUE
  # hclust_method = "ward.D2"
  # hmcols = NULL
  # branch_colors = c("#979797", "#F05662", "#7990C8")
  # add_annotation_row = NULL
  # add_annotation_col = NULL
  # show_rownames = FALSE
  # use_gene_short_name = TRUE
  # scale_max = 3
  # scale_min = -3
  # norm_method = c("log")
  # trend_formula = "~sm.ns(Pseudotime, df=3) * Branch"
  # return_heatmap = FALSE
  # cores = 1
  
  cds <- NA
  new_cds <- buildBranchCellDataSet(cds_subset, branch_states = branch_states, 
                                    branch_point = branch_point, progenitor_method = "duplicate")
  new_cds@dispFitInfo <- cds_subset@dispFitInfo
  if (is.null(branch_states)) {
    progenitor_state <- subset(pData(cds_subset), Pseudotime == 
                                 0)[, "State"]
    branch_states <- setdiff(pData(cds_subset)$State, progenitor_state)
  }
  col_gap_ind <- 101
  newdataA <- data.frame(Pseudotime = seq(0, 100, length.out = 100), 
                         Branch = as.factor(unique(as.character(pData(new_cds)$Branch))[1]))
  newdataB <- data.frame(Pseudotime = seq(0, 100, length.out = 100), 
                         Branch = as.factor(unique(as.character(pData(new_cds)$Branch))[2]))
  BranchAB_exprs <- genSmoothCurves(new_cds[, ], cores = cores, 
                                    trend_formula = trend_formula, relative_expr = T, new_data = rbind(newdataA, 
                                                                                                       newdataB))
  BranchA_exprs <- BranchAB_exprs[, 1:100]
  BranchB_exprs <- BranchAB_exprs[, 101:200]
  common_ancestor_cells <- row.names(pData(new_cds)[pData(new_cds)$State == 
                                                      setdiff(pData(new_cds)$State, branch_states), ])
  BranchP_num <- (100 - floor(max(pData(new_cds)[common_ancestor_cells, 
                                                 "Pseudotime"])))
  BranchA_num <- floor(max(pData(new_cds)[common_ancestor_cells, 
                                          "Pseudotime"]))
  BranchB_num <- BranchA_num
  
  ########## problem is here
  # norm_method <- match.arg(norm_method)
  ########## problem solve end
  
  if (norm_method == "vstExprs") {
    BranchA_exprs <- vstExprs(new_cds, expr_matrix = BranchA_exprs)
    BranchB_exprs <- vstExprs(new_cds, expr_matrix = BranchB_exprs)
  }else if (norm_method == "log") {
    BranchA_exprs <- log10(BranchA_exprs + 1)
    BranchB_exprs <- log10(BranchB_exprs + 1)
  }
  heatmap_matrix <- cbind(BranchA_exprs[, (col_gap_ind - 1):1], 
                          BranchB_exprs)
  heatmap_matrix = heatmap_matrix[!apply(heatmap_matrix, 1, 
                                         sd) == 0, ]
  heatmap_matrix = Matrix::t(scale(Matrix::t(heatmap_matrix), 
                                   center = TRUE))
  heatmap_matrix = heatmap_matrix[is.na(row.names(heatmap_matrix)) == 
                                    FALSE, ]
  heatmap_matrix[is.nan(heatmap_matrix)] = 0
  heatmap_matrix[heatmap_matrix > scale_max] = scale_max
  heatmap_matrix[heatmap_matrix < scale_min] = scale_min
  heatmap_matrix_ori <- heatmap_matrix
  heatmap_matrix <- heatmap_matrix[is.finite(heatmap_matrix[, 
                                                            1]) & is.finite(heatmap_matrix[, col_gap_ind]), ]
  row_dist <- as.dist((1 - cor(Matrix::t(heatmap_matrix)))/2)
  row_dist[is.na(row_dist)] <- 1
  exp_rng <- range(heatmap_matrix)
  bks <- seq(exp_rng[1] - 0.1, exp_rng[2] + 0.1, by = 0.1)
  if (is.null(hmcols)) {
    hmcols <- colorRamps::blue2green2red(length(bks) - 1)
  }
  ph <- pheatmap::pheatmap(heatmap_matrix, useRaster = T, cluster_cols = FALSE, 
                 cluster_rows = TRUE, show_rownames = F, show_colnames = F, 
                 clustering_distance_rows = row_dist, clustering_method = hclust_method, 
                 cutree_rows = num_clusters, silent = TRUE, filename = NA, 
                 breaks = bks, color = hmcols)
  annotation_row <- data.frame(Cluster = factor(cutree(ph$tree_row, 
                                                       num_clusters)))
  if (!is.null(add_annotation_row)) {
    annotation_row <- cbind(annotation_row, add_annotation_row[row.names(annotation_row), 
    ])
  }
  colnames(heatmap_matrix) <- c(1:ncol(heatmap_matrix))
  annotation_col <- data.frame(row.names = c(1:ncol(heatmap_matrix)), 
                               `Cell Type` = c(rep(branch_labels[1], BranchA_num), 
                                               rep("Pre-branch", 2 * BranchP_num), rep(branch_labels[2], 
                                                                                       BranchB_num)))
  colnames(annotation_col) <- "Cell Type"
  if (!is.null(add_annotation_col)) {
    annotation_col <- cbind(annotation_col, add_annotation_col[fData(cds[row.names(annotation_col), 
    ])$gene_short_name, 1])
  }
  names(branch_colors) <- c("Pre-branch", branch_labels[1], 
                            branch_labels[2])
  annotation_colors = list(`Cell Type` = branch_colors)
  names(annotation_colors$`Cell Type`) = c("Pre-branch", branch_labels)
  if (use_gene_short_name == TRUE) {
    if (is.null(fData(cds_subset)$gene_short_name) == FALSE) {
      feature_label <- as.character(fData(cds_subset)[row.names(heatmap_matrix), 
                                                      "gene_short_name"])
      feature_label[is.na(feature_label)] <- row.names(heatmap_matrix)
      row_ann_labels <- as.character(fData(cds_subset)[row.names(annotation_row), 
                                                       "gene_short_name"])
      row_ann_labels[is.na(row_ann_labels)] <- row.names(annotation_row)
    }
    else {
      feature_label <- row.names(heatmap_matrix)
      row_ann_labels <- row.names(annotation_row)
    }
  }else {
    feature_label <- row.names(heatmap_matrix)
    row_ann_labels <- row.names(annotation_row)
  }
  row.names(heatmap_matrix) <- feature_label
  row.names(annotation_row) <- row_ann_labels
  ph_res <- pheatmap::pheatmap(heatmap_matrix[, ], useRaster = T, cluster_cols = FALSE, 
                     cluster_rows = TRUE, show_rownames = show_rownames, 
                     show_colnames = F, clustering_distance_rows = row_dist, 
                     clustering_method = hclust_method, cutree_rows = num_clusters, 
                     annotation_row = annotation_row, annotation_col = annotation_col, 
                     annotation_colors = annotation_colors, gaps_col = col_gap_ind, 
                     treeheight_row = 20, breaks = bks, fontsize = 6, color = hmcols, 
                     border_color = NA, silent = TRUE)
  
  grid::grid.rect(gp = grid::gpar("fill", col = NA))
  grid::grid.draw(ph_res$gtable)
  if (return_heatmap) {
    return(list(BranchA_exprs = BranchA_exprs, BranchB_exprs = BranchB_exprs,
                heatmap_matrix = heatmap_matrix, heatmap_matrix_ori = heatmap_matrix_ori,
                ph = ph, col_gap_ind = col_gap_ind, row_dist = row_dist,
                hmcols = hmcols, annotation_colors = annotation_colors,
                annotation_row = annotation_row, annotation_col = annotation_col,
                ph_res = ph_res))
  }
  
  # return(ph_res)
}

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 225,226评论 6 524
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 96,509评论 3 405
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 172,523评论 0 370
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 61,181评论 1 302
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 70,189评论 6 401
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 53,642评论 1 316
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 41,993评论 3 431
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 40,977评论 0 280
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 47,527评论 1 326
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 39,547评论 3 347
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 41,661评论 1 355
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 37,250评论 5 351
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 42,991评论 3 340
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 33,422评论 0 25
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 34,571评论 1 277
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 50,241评论 3 382
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 46,737评论 2 366

推荐阅读更多精彩内容