Hi everybody,
I am trying to analyze RNAseq samples. I aligned all samples using STAR. I used following command:
STAR --genomeDir STAR_genome --genomeLoad NoSharedMemory --runThreadN 4 --readFilesIn Input1.fastq Input2.fastq --outFileNamePrefix outpotfile --outReadsUnmapped Fastx --outFilterIntronMotifs RemoveNoncanonical --outFilterType BySJout --outSAMstrandField intronMotif --sjdbGTFfile --sjdbOverhang 99
I have pair-end data. I used fasta file from UCSC(hg19) and GTF file from UCSC table browser. I got .sam aligned file and I used samtools to process this file for HTSeq.
My HTSeq command is:
htseq-count -r name -s reverse -t exon -i gene_name -m intersection-nonempty Input.sam hg19.ensemble.gtf > Output.counts
I used ensemble GTF file.
After running HTSeq, I get:
__no_feature 21082900
__ambiguous 528743
__too_low_aQual 0
__not_aligned 0
__alignment_not_unique 8353302
What is the problem? I do not get any counts for features.
Since, I used ensemble GTF file, could that be the problem as I used UCSC genome and GTF for alignment and ensemble GTF for HTSeq.
Your help is really appreciated. Thanks.
I am trying to analyze RNAseq samples. I aligned all samples using STAR. I used following command:
STAR --genomeDir STAR_genome --genomeLoad NoSharedMemory --runThreadN 4 --readFilesIn Input1.fastq Input2.fastq --outFileNamePrefix outpotfile --outReadsUnmapped Fastx --outFilterIntronMotifs RemoveNoncanonical --outFilterType BySJout --outSAMstrandField intronMotif --sjdbGTFfile --sjdbOverhang 99
I have pair-end data. I used fasta file from UCSC(hg19) and GTF file from UCSC table browser. I got .sam aligned file and I used samtools to process this file for HTSeq.
My HTSeq command is:
htseq-count -r name -s reverse -t exon -i gene_name -m intersection-nonempty Input.sam hg19.ensemble.gtf > Output.counts
I used ensemble GTF file.
After running HTSeq, I get:
__no_feature 21082900
__ambiguous 528743
__too_low_aQual 0
__not_aligned 0
__alignment_not_unique 8353302
What is the problem? I do not get any counts for features.
Since, I used ensemble GTF file, could that be the problem as I used UCSC genome and GTF for alignment and ensemble GTF for HTSeq.
Your help is really appreciated. Thanks.
Comment