转录组的组装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. SPSS-方差分析

    方差分析(单因素方差分析.多因素方差分析.协方差分析) 基本概念:进行两组以上均数的比较,检验两个或两个以上样本均数差别的显著性(T检验主要是检验两个样本均数差别的显著性)              ...

  2. Json Web Token JJWT

    什么是JWT? Json web token (JWT), 是为了在网络应用环境间传递声明而执行的一种基于JSON的开放标准((RFC 7519).该token被设计为紧凑且安全的,特别适用于分布式站 ...

  3. 大数据入门到精通5--spark 的 RDD 的 reduce方法使用

    培训系列5--spark 的 RDD 的 reduce方法使用 1.spark-shell环境下准备数据 val collegesRdd= sc.textFile("/user/hdfs/C ...

  4. scrapy 是指user_agent

    1.倒入random模块 2.在settings文件中添加useragent列表 MY_USER_AGENT = [ "Mozilla/4.0 (compatible; MSIE 6.0; ...

  5. Android 数据库框架总结(转)

    转自 http://blog.csdn.net/da_caoyuan/article/details/61414626 一:OrmLite 简述: 优点: 1.轻量级:2.使用简单,易上手:3.封装完 ...

  6. Linux 字符设备驱动及一些简单的Linux知识

    一.linux系统将设备分为3类:字符设备.块设备.网络设备 1.字符设备:是指只能一个字节一个字节读写的设备,不能随机读取设备内存中的某一数据,读取数据需要按照先后数据.字符设备是面向流的设备,常见 ...

  7. cloudstack4.11+KVM+4网卡bond5+briage 交换机不作配置

    网卡绑定配置 # cat ifcfg-em1TYPE=EthernetBOOTPROTO=noneDEVICE=em1ONBOOT=yesMASTER=bond0SLAVE=yes# cat ifcf ...

  8. 矩形覆盖(python)

    题目描述 我们可以用2*1的小矩形横着或者竖着去覆盖更大的矩形.请问用n个2*1的小矩形无重叠地覆盖一个2*n的大矩形,总共有多少种方法? # -*- coding:utf-8 -*- class S ...

  9. Allowing GPU memory growth

    By default, TensorFlow maps nearly all of the GPU memory of all GPUs (subject to CUDA_VISIBLE_DEVICE ...

  10. NumPy 排序、条件刷选函数

    NumPy 排序.条件刷选函数 NumPy 提供了多种排序的方法. 这些排序函数实现不同的排序算法,每个排序算法的特征在于执行速度,最坏情况性能,所需的工作空间和算法的稳定性. 下表显示了三种排序算法 ...