纠正错误 / Fix 添加实例 / Add example
文件格式 / Formats

StringTie

从 RNA-seq 比对结果组装转录本并估计表达量的工具。Tool for transcript assembly and expression estimation from RNA-seq alignments.

速览 | Quick Look

安装 | Install

mamba install -c bioconda stringtie

常用命令 | Common Commands

按参考注释估计表达:

stringtie sample.sorted.bam -p 8 -G annotation.gtf \
  -e -B -o sample/stringtie.gtf

无参考组装:

stringtie sample.sorted.bam -p 8 -o sample.assembled.gtf

合并多个样本组装结果:

stringtie --merge -p 8 -G annotation.gtf \
  -o merged.gtf mergelist.txt

生成 gene abundance 表:

stringtie sample.sorted.bam -p 8 -G annotation.gtf \
  -A sample.gene_abund.tsv -o sample.gtf

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References