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 :)
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 }'
:And if the query sequences are very short, use option
-task blastn-short
when usingblastn
.