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

featureCounts

基于注释文件把 RNA-seq 比对 reads 计数到 gene/exon/feature。Assigns aligned RNA-seq reads to genes, exons, or other genomic features.

速览 | Quick Look

安装 | Install

mamba install -c bioconda subread

常用命令 | Common Commands

单样本 gene count:

featureCounts -T 8 -a genes.gtf -o counts.txt sample.sorted.bam

多样本批量计数:

featureCounts -T 12 -p -B -C -a genes.gtf -o gene_counts.txt *.sorted.bam

指定 strandedness:

featureCounts -T 8 -s 2 -a genes.gtf -o stranded_counts.txt *.bam

关键参数 | Key Options

常见坑 | Pitfalls

参考 | References