# 目录
1.Module 1 - Introduction to RNA sequencing
2.Module 2 - RNA-seq Alignment and Visualization
3.Module 3 - Expression and Differential Expression
4.Module 4 - Isoform Discovery and Alternative Expression
- Reference Guided Transcript Assembly
- de novo Transcript Assembly
- Transcript Assembly Merge
- Differential Splicing
- Splicing Visualization
5.Module 5 - De novo transcript reconstruction
6.Module 6 - Functional Annotation of Transcripts
# 4.2 Stringtie De Novo Mode
在上一个模块中,使用 Stringtie 的 '-G' 和 '-e' 选项在 'reference only' 模式下运行 Stringtie
本次教程将运行 Stringle 的 de novo 模式
额外选项如下
- '-p 8' tells Stringtie to use eight CPUs
- '-l' name prefix for output transcripts (default: STRG)
- '-o' output path/file name for the assembled transcripts GTF (default: stdout)
mkdir denovo | |
stringtie -p 8 -l HBR_Rep1 -o denovo/HBR_Rep1/transcripts.gtf HBR_Rep1.bam | |
后续处理相同 |