I’m looking for site or software that maps all known micro-RNAs coding sequences. I would like to know if the genomic region that I have got from GWAS coding or any interesting micro-RNA.
One very simple possibility is using BEDtools (https://code.google.com/p/bedtools/). In this package, there is a tool called intersectBED. You need both your lists in BED format and then you can call it like this: 'intersectBED -a GWA.bed -b microRNA.bed -wa -wb -s'. It will return you all overlapping loci.