Entering edit mode
2.7 years ago
TM
▴
20
Hi, I am doing alignment with HISAT2 and couting with HT-seq. I got the counting matrix but i found there are gene ID appear in the gene name row. Is it normal that gene ID can appear like this or are there any problems regarding the counting step? Please help me, thank you in advance!
while running ht-seq, by default
-i
option isgene_id
. use-i gene_name
, this will assign gene names instead of gene ids.The following is my script: python3 -m HTSeq.scripts.count -f bam -r pos -m union -s reverse -t exon -i gene_id \ --additional-attr=gene_name \
So I need to change -i gene_id -> -i gene_name, how about the additional-attr, is it remain gene_name the same?
check your file that you used to specify the annotations, investigate the attributes for the transcripts in question
Can you help me check my script? I am quite beginner in HT-seq. python3 -m HTSeq.scripts.count -f bam -r pos -m union -s reverse -t exon -i gene_id \ --additional-attr=gene_name \