rna paired sequence sort is important
1
0
Entering edit mode
5.0 years ago

i have rna paired fasta file I trimmed it using trim galore and then mapped it with hg38 bowtie2 index now i have sam file is it important to sort it for htseq count i have to ask that the process that i follow till now is it correct differential expression and second that what next to do to get differential expression i m new please help me

RNA-Seq sequence alignment • 719 views
ADD COMMENT
0
Entering edit mode

Please add some punctuation and write in separate sentences. This is barely readable.

mapped it with hg38 bowtie2 index

bowtie2 does not due spliced alignment, but you did not tell us which organism you are working on. For eukaryotic organisms, STAR or HISAT2 would be a better choice.

is it important to sort it for htseq count

Yes. A better tool would be featureCounts.

ADD REPLY
0
Entering edit mode
4.9 years ago

is it important to sort it for htseq count

Yes you should (always) sort your bam files.

Note that you can often do this directly after alignment without creating intermediate files:

aligner genome.fasta reads1.fasta.gz reads2.fastq.gz | samtools sort -o sorted_alignment.bam

A better tool for counting expression levels would be featureCounts.

ADD COMMENT

Login before adding your answer.

Traffic: 3138 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6