https://blog.csdn.net/herokoking/article/details/78257714
https://www.cnblogs.com/triple-y/p/9338890.html
1. 将.sam
按照read name
进行排序,并输出为.bam
samtools sort -n -o output_name.bam -O bam input_name.sam
samtools 会自动识别输入文件的格式,这里可以是
.sam
或者.bam
-n
: 按照序列名进行排序
-o
: 后跟输出文件的名称,如果缺乏此参数则输出到标准输出
-O
: 规定输出格式
input_name.bam
: 输入文件的文件名
2. 用htseq-count
对比对文件进行计数(htseq-count
)
htseq-count -f bam -r name -s no -a 10 -t exon -i gene_id -m union input.bam path/gtf > counts.txt
网友评论