Hi,
I have sequencing data for microRNA on common bean (Phaseoulus vulgaris), all stored in fastq format.
I have used sRNAtoolbox to identify the miRNAs; now I would like to understand which might be the target of this miRNAs in the common bean genome.
Can anyone suggest me which are the best tools for miRNA target prediction?
Thanks!
Thank you! I ran miRanda, but the output can get really big. I used my known miRNA and looked for putative targets in the trascriptome of P. vlugaris and i got my output file, which mapped my miRNA to tons of different sequences.
Do you have any suggestion on how to process the output file in a nice way? Like to extract only matches with good scores, or something like that. How you process it usually?
Thanks again for the support!
So each output entry looks like this (at least it did for me) and there were many of them:
To make a clean table out of it, I used
grep
to recover only the last line, starting with ">>". Then Isort
by score (column 5). This gives me a nice table easy to parse in R, with the best hits on top.You can also use the
-sc
option in miRanda to limit the number of hits based on score. For instance with-sc 150
you only get hits with score higher than 150.Thanks, that was really helpful! I managed to get the output as you suggested. What if I want to have the alignment as well in the file I'm going to export? There's a way to do that? Sorry for all of the questions!
Thanks again
Well, the alignment takes multiple lines so it would be difficult to make it fit in a table with one hit per line.
I have one last question. Could you help me out with the interpretation of the output from Miranda? I’m still the learning process so it’s still a little bit cryptic for me what to look at exactly to find the best predicted target.
Thanks again
In general, the lowest free energy ("Max Energy") reflects a more stable/specific interaction between the miRNA and the target. The higher score ("Max Score") is also desirable in general, but you will have to read the paper to know exactly how this score is calculated.
In my opinion, "Tot Score" and "Tot Energy" are not that interesting to look at. As best predicted target, I would rather choose a mRNA with only one region strongly targeted by a miRNA instead than a mRNA with multiple region weakly targeted by the same miRNA.
Thank you for your support! You've been extremely helpful