美文网首页ATACSeq 开放染色质分析
ChIPseeker注释ATAC-seq peak的lncRNA

ChIPseeker注释ATAC-seq peak的lncRNA

作者: 六六_ryx | 来源:发表于2018-04-27 02:15 被阅读662次

    最近在分析ATAC-seq的数据 ,得到peak后我想看看这些peak是否注释到的有lncRNA,发现Y叔的ChIPseeker可以实现这个功能,只需要准备peak的bed格式文件和lncRNA的注释文件TxDb。

    ##载入lincRNA注释文件
    library(ChIPseeker)
    #source("https://bioconductor.org/biocLite.R")
    #biocLite("TxDb.Hsapiens.UCSC.hg19.lincRNAsTranscripts")
    library("TxDb.Hsapiens.UCSC.hg19.lincRNAsTranscripts")
    lincRNA_txdb=TxDb.Hsapiens.UCSC.hg19.lincRNAsTranscripts
    
    ##读入bed文件
    HSC <- readPeakFile("hsc478_summits.bed")
    HSC_lincRNA <- annotatePeak(HSC, TxDb=lincRNA_txdb)
    
    ## visualazition             
    plotAnnoBar(HSC_lincRNA)
    
    ## Visualize Genomic Annotation 
    upsetplot(HSC_lincRNA, vennpie=TRUE)
    

    参考资料:
    https://www.biostars.org/p/215069/
    关于ChIPseq注释的几个问题

    相关文章

      网友评论

        本文标题:ChIPseeker注释ATAC-seq peak的lncRNA

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