转录组的组装Stingtie和Cufflinks

Posted: 十月 18, 2017  Under: Transcriptomics  By Kai  no Comments

首先这两款软件都是用于基于参考基因组的转录组组装,当然也可用于转录本的定量。前者于2016年的 protocol上发表的转录组流程HISAT, StringTie and Ballgown后被广泛使用,后者则是老牌的RNA分析软件了。在算法上来说Stringtie使用的是流神经网络算法,Cufflinks则是吝啬算法;从组装效果上来看Stringtie在灵敏度和准确度上表现较好,能够拼接出更完整、更准确的基因;从定量上来说,两者相差不大,但是cufflinks在一些特殊情况下会有异常的表达量;从运行速度上来说,Stringtie远远快了cufflinks了。。。

以上均为听说。。。

不仅以上的所述,最近的一篇Gaining comprehensive biological insight into the transcriptome by performing a broad-spectrum RNA-seq analysis转录组各个分析流程对比的文章中也提到HISAT2+StringTie的搭配使用效果是在基于参考基因组转录本定量中最好的一个。所以我果断选择HISAT2+Stingtie来代替TopHat+Cufflinks来用于转录组的组装

这里主要是记下StringTie的使用,HISAT2则先略过了;当然还有一个Cuffcompare不得不提

下载及安装

直接下载二进制软件

wget http://ccb.jhu.edu/software/stringtie/dl/stringtie-1.3.3b.Linux_x86_64.tar.gz
tar zxvf stringtie-1.3.3b.Linux_x86_64.tar.gz

Stringtie的使用

  1. 将bam文件通过stringTie进行组装,以一个公共数据小鼠为例

    stringtie -p 20 -G ~/reference/genome/mm10/gencode.vM13.annotation.gtf -o control1.gtf control1_sorted.bam

    这里的参数比较简单:

    -p 线程数
    -G 基因组注释文件
    -o 输出的gtf文件

    还有一些其他参数,比如:

    -m 组装预测的最小的转录本长度
    -B 用于下游Ballgown做差异分析
    -A 用于输出Gene abundances文件
    -e 表示只对参考基因组注释文件中的转录组进行定量

    还有需要注意的是,如果输入的bam文件是来自于HISAT2比对的话,需要在HISAT2使用时加上–dta,这有利于stringtie的组装

  2. 输出gtf格式文件,内容如下(可看官网的上的说明):

    1.seqname :Denotes the chromosome, contig, or scaffold for this transcript
    2.source :The source of the GTF file, default stringtie
    3.feature :Feature type; e.g., exon, transcript, mRNA, 5’UTR)
    4.start :Start position of the feature (exon, transcript, etc), using a 1-based index
    5.end :End position of the feature, using a 1-based index
    6.score :A confidence score for the assembled transcript. Currently this field is not used, and StringTie reports a constant value of 1000 if the transcript has a connection to a read alignment bundle
    7.strand : If the transcript resides on the forward strand, ‘+’. If the transcript resides on the reverse strand, ‘-‘
    8.frame :Frame or phase of CDS features. StringTie does not use this field and simply records a “.”
    9.attributes :

    • gene_id: A unique identifier for a single gene and its child transcript and exons based on the alignments’ file name.
    • transcript_id: A unique identifier for a single transcript and its child exons based on the alignments’ file name.
    • exon_number: A unique identifier for a single exon, starting from 1, within a given transcript.
    • reference_id: The transcript_id in the reference annotation (optional) that the instance matched.
    • ref_gene_id: The gene_id in the reference annotation (optional) that the instance matched.
    • ref_gene_name: The gene_name in the reference annotation (optional) that the instance matched.
    • cov: The average per-base coverage for the transcript or exon.
    • FPKM: Fragments per kilobase of transcript per million read pairs. This is the number of pairs of reads aligning to this feature, normalized by the total number of fragments sequenced (in millions) and the length of the transcript (in kilobases).
    • TPM: Transcripts per million. This is the number of transcripts from this particular gene normalized first by gene length, and then by sequencing depth (in millions) in the sample. A detailed explanation and a comparison of TPM and FPKM can be found here, and TPM was defined by B. Li and C. Dewey here
  3. 用Transcript merge mode合并所有样本组装的转录本,类似于cufflinks套件中的cuffmerge

    stringtie --merge -p 20 -o stringtie_merged.gtf mergelist.txt

    mergelist包含了所有样本的组装后的gtf文件

    还可以通过-m,-c,-F,-T以及-f等参数对组装后的转录本在merge时进行过滤

    如果需要加入参考基因组的注释文件,可以用-G参数加入

  4. 后续可以接差异分析

    在stringtie组装时使用了-B/-b,-e参数,然后stringtie merge时使用-G参数,接着用Ballgown进行differential expression分析。并且在官网内还提到可以使用一个python脚本来从stringtie结果中提取read count,用于DESeq2和edgeR包做差异分析。。。但是没试过。。

Cuffcompare

这个软件是cufflinks套件中的一个,为什么要使用这个软件呢,是因为它有stringtie没有的功能,但是我觉得蛮实用的,就是用于预测新转录本或者对基因结构进行优化等(当然只能用于参考而已)。Cuffcompare是将组装后的转录本与参考基因组的转录本进行比较,从而对比对结果进行分类

  1. 使用cuffcompare将组装转录本与参考基因组的进行比较

    cuffcompare -r ~/reference/genome/mm10/gencode.vM13.annotation.gtf -s ~/reference/genome/mm10/GRCm38.p5.genome.fa stringtie_merged.gtf

    -r 参考基因组的注释文件
    -s 参考基因组序列

  2. 输出结果文件

    • cuffcmp.loci :locus id的位置信息,个人理解为组装后的gene的local信息
    • cuffcmp.stats :统计结果展示,看看就行了
    • cuffcmp.combined.gtf :如果输入多个gtf组装文件的话,这个文件是将多个文件中的转录本并集输入到这个文件中
    • cuffcmp.stringtie_merged_new.gtf.refmap :如果组装的gtf文件中的转录本either fully or partially match参考基因组转录本,则输入该文件中,也就是说组装后与参考基因组几乎完全匹配的转录本
    • cuffcmp.stringtie_merged_new.gtf.tmap :这个文件跟cuffcmp.stringtie_merged_new.gtf.refmap形式相似,但是输入的则是组装后与参考基因组较为近似的转录本
    • cuffcmp.tracking :这个是比较重要的一个文件,里面含有cuffcompare软件对组装转录本分类定义的描述信息

    2.1 cuffcmp.tracking文件

    • 第1列 :Cufflinks transfrag id,A unique internal id for the transfrag
    • 第2列 :Cufflinks locus id,A unique internal id for the locus
    • 第3列 :Reference gene id(如果没有则为”-“)
    • 第4列 :Reference transcript id(如果没有则为”-“)
    • 第5列 :class code,也就是组装转录本的分类信息

      1   =   Complete match of intron chain
      2 c Contained
      3 j Potentially novel isoform (fragment): at least one splice junction is shared with a reference transcript
      4 e Single exon transfrag overlapping a reference exon and at least 10 bp of a reference intron, indicating a possible pre-mRNA fragment.
      5 i A transfrag falling entirely within a reference intron
      6 o Generic exonic overlap with a reference transcript
      7 p Possible polymerase run-on fragment (within 2Kbases of a reference transcript)
      8 r Repeat. Currently determined by looking at the soft-masked reference sequence and applied to transcripts where at least 50% of the bases are lower case
      9 u Unknown, intergenic transcript
      10 x Exonic overlap with reference on the opposite strand
      11 s An intron of the transfrag overlaps a reference intron on the opposite strand (likely due to read mapping errors)
      12 . (.tracking file only, indicates multiple classifications)

    理解cuffcmp.tracking文件中的分类信息,然后参考一些文献中的预测新转录本的阈值条件,即可筛选出潜在的新转录本(作为参考),我暂时是这么理解的

    补充一点,才发现其实还有一个软件gffcompare也能做cuffcompare的工作,stringtie开发者也推荐使用

参考文章:
http://blog.csdn.net/hill_night/article/details/44829965
http://www.bio-info-trainee.com/2073.html

本文出自于http://www.bioinfo-scrounger.com转载请注明出处

转录组的组装Stingtie和Cufflinks的更多相关文章

  1. (转) gffcompare和gffread | gtf | gff3 格式文件的分析 | gtf处理 | gtfparse

    工具推荐:https://github.com/openvax/gtfparse 真不敢相信,Linux自带的命令会这么强大,从gtf中提取出需要的transcript,看起来复杂,其实一个grep就 ...

  2. 生信-cufflinks输入输出文件分析

    转自:https://wenku.baidu.com/view/8d6a95d20d22590102020740be1e650e52eacf2a.html 输出包含3个文件:转录组的组装.gtf    ...

  3. PBcR - 纠错及组装算法

    单分子测序reads(PB)的混合纠错和denovo组装 我们广泛使用的PBcR的原始文章就是这一篇 原文链接:Hybrid error correction and de novo assembly ...

  4. 史上最全 | 39个RNAseq分析工具与对比

    文献:Sahraeian S M E, Mohiyuddin M, Sebra R, et al. Gaining comprehensive biological insight into the ...

  5. RNA-seq流程需要进化啦!

    RNA-seq流程需要进化啦! Posted on 2015年9月25日 Tophat 首次被发表已经是6年前 Cufflinks也是五年前的事情了 Star的比对速度是tophat的50倍,hisa ...

  6. 转录组组装软件stringtie

    StringTie是約翰·霍普金斯大學计算机生物中心开发的一款转录组组装软件,在组装转录本的完整度,精度和速度方面都较以往的cufflinks 有很大的提升,也是目前有参考基因组转录组主流的组装软件. ...

  7. 转录组分析---Hisat2+StringTie+Ballgown使用

    转录组分析---Hisat2+StringTie+Ballgown使用 (2016-10-10 08:14:45) 转载▼ 标签: 生物信息学 转录组   1.Hisat2建立基因组索引: First ...

  8. 使用Tophat+cufflinks分析差异表达

    使用Tophat+cufflinks分析差异表达  2017-06-15 19:09:43     522     0     0 使用TopHat+Cufflinks的流程图 序列的比对是RNA分析 ...

  9. 转录本组装软件StringTie的使用说明

    转录本组装软件StringTie的使用说明 StringTie 转录本组装软件StringTie的使用说明 转录组分析流程 HISTA + StringTie 组合.其Protocol 发表在Natu ...

随机推荐

  1. JavaScript数组方法大全(推荐)

    原网址:http://www.jb51.net/article/87930.htm 数组在笔试中经常会出现的面试题,javascript中的数组与其他语言中的数组有些不同,为了方便之后数组的方法学习, ...

  2. jstl-日期格式化-jsp页面需引入fmt标签

    jsp页面需引入fmt标签: <taglib prefix="fmt" uri="http://java.sun.com/jsp/jstl/fmt"> ...

  3. canu软件文献

    1)背景 组装:短的reads通过overlap来组装成contig 局限性:repeat 大于overlap导致ambiguous reconstructions and fragment the ...

  4. JVM 图解--1.6,1.7,1.8

  5. Centos6.5 防火墙设置详解

    vim /etc/sysconfig/iptables #丢弃所有进入请求 INPUT DROP [0:0] #丢弃所有转发请求 FORWARD DROP [0:0] #允许所有的output请求 O ...

  6. 关于Windows下无法在MySQL安装目录找到配置文件my.ini

    目前5.7版本的MySQL的配置文件my.ini位于: C:\ProgramData\MySQL\MySQL Server 5.7

  7. 对象转化为json

    google开发的Gson转换利器,String json = new Gson ().toJson(object); 一行代搞定. 别忘了引入jar包 转自:https://zhidao.baidu ...

  8. ECMAScript6的原型

    class Car { constructor(name){ this.name = name; } getName(){ } } class Ferrari extends Car{ constru ...

  9. Django具体操作(四)

    自定义模板语法的标签 首先在django的项目中创建app并且在settings中添加了APP的名称. 在app添加templatetags模块(名字是固定的,也就是说,必须要这样) 如图如何自定义呢 ...

  10. swift - 添加定时器

    mport UIKit /// 控制定时器的类 class ZDTimerTool: NSObject { /// 定时器 // private var timer: Timer? /// GCD定时 ...