StringTie参数备忘

StringTie

参考链接:

https://ccb.jhu.edu/software/stringtie/index.shtml?t=manual#input

https://www.cnblogs.com/adawong/articles/7977314.html

参数简介

StringTie的基本用法stringtie [options]*

其中,aligned_reads.bam 是输入文件,该输入文件要求必须按其基因组位置排序, HISAT2的输出文件则需经过samtools sort生成的bam文件才可当做输入文件。

其他可选参数:

-h/--help   帮助信息

-v  打开详细模式,打印程序处理的详细信息。

-o [] 设置StringTie组装转录本的输出GTF文件的路径和文件名。此处可指定完整路径,在这种情况下,将根据需要创建目录。默认情况下,StringTie将GTF写入标准输出。

-p     指定组装转录本的线程数(CPU)。默认值是1

-G     使用参考注释基因文件指导组装过程,格式GTF/GFF3。输出文件中既包含已知表达的转录本,也包含新的转录本。选项-B,-b,-e,-C需要此选项(详情如下)

--rf    链特异性建库方式:fr-firststrand(最常用的是dUTP测序方式,其他有NSR,NNSR).

--fr    链特异性建库方式:fr-secondstrand(如 Ligation,Standard SOLiD).

-l 

输入文件

其中,aligned_reads.bam 是输入文件,该输入文件要求必须按其基因组位置排序,如TopHat的输出文件accepted_hits.bam可直接当做输入文件,而 HISAT2的输出文件则需经过samtools sort生成的bam文件才可当做输入文件。

输入BAM文件中的每个 spliced read 比对(即跨越至少一个连接点的比对)必须包含标签XS,用以指示测序产生的read是来源于基因组序列上的哪条链产生的RNA。由TopHat和 HISAT2 (需参数 --dta,该参数用于发现剪接位点) 产生的比对结果中已经包含标签XS。但是,有的mapping程序(read mapper)未必含有标签XS,所以,用户在进行下一步分析时需要进行检查。

注意:一定要使用-dta选项来运行HISAT2,否则结果将会受到影响。

作为选项,可以向StringTie提供GTF / GFF3格式的参考注释基因组文件。在这种情况下,StringTie更喜欢使用注释文件中的这些“已知”基因,对于那些被表达的基因,它将计算coverage,TPM和FPKM值。它还会产生额外的转录本,而注释文件中并没有这些转录本。请注意,如果不使用选项-e,那么参考转录本就需要被reads 完全覆盖,以便包含在StringTie的输出中。在这种情况下,其他通过StringTie从数据中组装的转录本,且不在注释文件中的转录本也会输出。

注意:如果用户正在分析注释较好的基因组,例如人类,小鼠或其他模型生物,则强烈建议您提供注释文件。

输出文件

主要输出文件有:

1、 GTF文件: 记录组装的转录本信息

2、 Tab文件: 记录基因丰度信息

3、 GTF文件:完全覆盖与参考注释基因组文件所匹配的转录本信息

4、 *.ctab文件:用于下游Ballgown软件做差异表达分析的输入文件

5、 GTF文件:在合并模式下,生成一个合并的GTF文件

GTF文件:记录组装的转录本信息

  • seqname: 染色体,contig, 或 scaffold

  • source: GTF文件的源文件。

  • feature: 特征类型;如:exon, transcript, mRNA, 5'UTR。

  • start: 开始位置,使用基于1的索引

  • end: 结束位置,使用基于1的索引

  • score: 组装的转录本的可信度分数。目前这个字段没有被使用,并且如果转录本 与a read alignment bundle

    有连接,则StringTie输出常数值1000。

  • strand: 正向链: '+'; 反向链: '-'.

  • frame: CDS特征的 Frame or phase 。 StringTie不使用该字段,只记录一个“.”。

  • 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.

Tab文件: 记录基因丰度信息

如果StringTie使用-A 选项运行,则返回包含基因丰度的文件。

  • Column 1 / Gene ID: The gene identifier comes from the reference annotation provided with the -G option. If no reference is provided this field is replaced with the name prefix for output transcripts (-l).
  • Column 2 / Gene Name: This field contains the gene name in the reference annotation provided with the -G option. If no reference is provided this field is populated with '-'.
  • Column 3 / Reference: Name of the reference sequence that was used in the alignment of the reads. Equivalent to the 3rd column in the .SAM alignment.
  • Column 4 / Strand: '+' denotes that the gene is on the forward strand, '-' for the reverse strand.
  • Column 5 / Start: Start position of the gene (1-based index).
  • Column 6 / End: End position of the gene (1-based index).
  • Column 7 / Coverage: Per-base coverage of the gene.
  • Column 8 / FPKM: normalized expression level in FPKM units (see previous section).
  • Column 9 / TPM: normalized expression level in RPM units (see previous section).

GTF文件:完全覆盖与参考注释基因组文件所匹配的转录本信息

如果StringTie与 -C 选项一起运行(需要选项-G

*.ctab文件:用于下游Ballgown软件做差异表达分析的输入文件

如果StringTie与-B选项一起运行,它将返回Ballgown输入文件,包含以下文件:(1) e2t.ctab, (2) e_data.ctab, (3) i2t.ctab, (4) i_data.ctab, and (5) t_data.ctab。

GTF文件:在合并模式下,生成一个合并的GTF文件

如果StringTie使用--merge选项运行,它将多个GTF / GFF文件作为输入,并将这些转录本合并和组装成非冗余转录本集合。

你可能感兴趣的:(StringTie参数备忘)