miRNA blast to RNA database?
2
0
Entering edit mode
7.3 years ago
Buffo ★ 2.4k

Hi everybody, I have some fastq reads from miRNA-seq and I want to classify them using the blast algorithm, but, in the miRdb all sequences are annotated in RNA nucleotides instead of DNA, I know that translation to DNA is not a complicated issue on linux command line but, if I do that, is the best way? Someone has had the same problem? And second, somebody knows if I will have problems looking for target genes using bowtie to align the reads? (due to align very short reads)

Thanks :)

miRNA Blast RNA-Seq • 3.6k views
ADD COMMENT
1
Entering edit mode

RNA should be recognized by BLAST.

Of cause you can convert RNA to DNA by an easy solution using awk: awk '{ if (!/>/) { gsub(/u|U/, "T", $0) } print }':

$ echo -ne ">rna\nacgu\nACGU\n" | awk '{ if (!/>/) { gsub(/u|U/, "T", $0) } print }'
>rna
acgT
ACGT

And if the query sequences are very short, use option -task blastn-short when using blastn.

ADD REPLY
1
Entering edit mode
7.3 years ago
Buffo ★ 2.4k

If someone want to know, I solve this by simple blast process, convertion to DNA is not necesary;

formatdb -i file_data_base.fa -o T -p F

Then make blastn with command -task blastn-short :)

ADD COMMENT
1
Entering edit mode
7.3 years ago
apa@stowers ▴ 600

If you are trying to align miRNA reads to miRNA transcripts and figure out which miRNA is which, Bowtie is fine. However, it sounds like you are also trying to find target genes with Bowtie, and that will likely end in disaster.

miRNAs are very short, and their binding to mRNAs is famously messy, full of loops and mispairings. Bowtie is not designed for this task -- your false negative rate will be sky high. Also bear in bind that the entire mature miRNA need not bind to the mRNA, which will further challenge Bowtie and similar aligners.

There are many specialized miRNA binding-site prediction algorithms, for instance this list .

Practical Aspects of microRNA Target Prediction is a very useful paper for understanding this. The CLASH-seq paper is also very illuminating.

ADD COMMENT
0
Entering edit mode

Thanks :), Actually I did that prediction, and I think it was not so bad, I get about 80% of aligned reads (with multi-hit). I will read that papers THANK YOU. Also there is a webserver for predict target genes from mir_id:

http://zmf.umm.uni-heidelberg.de/apps/zmf/mirwalk2/

I will use it for target prediction and anotate new ones after validation.

ADD REPLY

Login before adding your answer.

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