美文网首页ChIP-seq课题shell
关于 ChIPseeker 注释转录因子 Peak 的一点思考

关于 ChIPseeker 注释转录因子 Peak 的一点思考

作者: 热衷组培的二货潜 | 来源:发表于2020-06-12 01:00 被阅读0次

个人观点:将 ignoreDownstreamignoreUpstream 的结果取并集更好的能代表 TF 结合的靶基因启动子区??希望明天服务器早点恢复,看另外一个结果怎么样。

upstream = 1000, downstream = 200

peak2Gene_GO_igD(peak, ignoreDownstream = TRUE, GO = FALSE, Promoter = TRUE)
peak2Gene_GO_igU(peak, ignoreUpstream  = TRUE, GO = FALSE, Promoter = TRUE)

# 合并两个结果
Promoter_Gene_y <- read.csv("Promoter_u1000_d200_igD.csv")
Promoter_Gene_x <- read.csv("Promoter_u1000_d200_igU.csv")

end_binding_Promoter <- rbind(Promoter_Gene_y[, c(1:4, 10)], 
                              Promoter_Gene_x[, c(1:4, 10)]
                              ) %>%
  distinct(geneId, .keep_all = TRUE)

相关文章

网友评论

    本文标题:关于 ChIPseeker 注释转录因子 Peak 的一点思考

    本文链接:https://www.haomeiwen.com/subject/mduwtktx.html