counting the reads that mapped to a part of transcriptome
2
0
Entering edit mode
6.5 years ago
Sara ▴ 240

I have RNAseq data and trying to count the reads that mapped only to a part of 5'UTR (in fact the whole 5'UTR except the first 50 nts). do you know how to do that?

RNA-Seq • 2.1k views
ADD COMMENT
0
Entering edit mode
6.5 years ago
tarek.mohamed ▴ 360

Hi Sara,

Did you align the raw reads to a reference genome? if so what is the current format of your aligned reads?

Tarek

ADD COMMENT
0
Entering edit mode

I can actually align to the part of transcriptome that I want (first I have to make fasta file and use it as reference file to align to). I can also make gtf file using the same file and count using that. but in both cases it returns 0 counts. so I thought maybe I should align to the genome and count on the reads that mapped to that part. but here I do not know how to do that.

ADD REPLY
0
Entering edit mode
6.5 years ago
glihm ▴ 660

Hello Sara,

once you have mapped the data against the genome of your interest, you can simply use FeatureCounts program for instance:

featureCounts -a yourGTF.gtf -t UTR5 -g transcript_id -o counts_UTR5_transcripts.txt

The -t option allows you to select a type of features to be counted. The -g option allows you to choose "how to group your data". Using transcript_id (or something equivalent in your GTF/GFF), you tell to FeatureCounts: "ouput the counts for each transcript".

ADD COMMENT
0
Entering edit mode

Also if you prefer to use R, you can use "Rsubread" package to count your reads using featureCounts () as mention by glihm.

T

ADD REPLY

Login before adding your answer.

Traffic: 2372 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