美文网首页
salmon 转录本定量转为基因水平定量

salmon 转录本定量转为基因水平定量

作者: 今天没回家 | 来源:发表于2021-07-20 14:55 被阅读0次

    需要提前安装GenomicFeatures 和 tximport

    library(GenomicFeatures)
    library(tximport)
    gtf_file='gene.gtf'
    txdb <- makeTxDbFromGFF(gtf_file)
    k <- keys(txdb, keytype = "TXNAME")
    tx2gene <- select(txdb, k, "GENEID", "TXNAME")
    count_dir='/data1/download'
    name=c('SRR1','SRR2','SRR3','SRR4')
    files <- file.path(count_dir, name,"quant.sf")
    names(files) <- paste0(name)
    txi.salmon <- tximport(files, type = "salmon", tx2gene = tx2gene)
    counts=txi.salmon$counts
    tpm=txi.salmon$abundance
    write.table(tpm,'gene.tmp',sep='\t',quote=F)
    

    相关文章

      网友评论

          本文标题:salmon 转录本定量转为基因水平定量

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