retrieve genomic coordinate on mRNA
4
2
Entering edit mode
6.8 years ago

Dear all, Is there an easy way to convert genomic coordinate to mRNA (transcript) coordinate (with no intronic region) ? I managed to convert genomic coordinate to gene coordinate (with intron) but i would like to find the coordinate on mRNA. Thanks,

RNA-Seq next-gen sequencing genome • 2.3k views
ADD COMMENT
1
Entering edit mode

What are you looking to obtain? As you point out a transcript is built from several different genomic coordinates, not just one.

ADD REPLY
0
Entering edit mode
6.8 years ago

I have genomic coordinate of iCLIP data. I want the coordinate of this proteine at the transcript level. I know that transcript are spliced and I want the coordinate on every transcript if the binding site doesn't occure in intron.

ADD COMMENT
0
Entering edit mode
6.8 years ago
Manvendra Singh ★ 2.2k

It should be very simple

  1. download the gtf file and install bedtools
  2. convert it to bed using gtf2bed
  3. grep -wi 'exon' bed_file_converted_from_gtf > exons.bed
  4. intersectBed -a your_iCLIP_coordinates -b exons.bed > your_protein_binding_transcripts.bed

hth

ADD COMMENT
0
Entering edit mode
6.8 years ago
cmdcolin ★ 3.8k

Tools like Ensembl VEP can do this, and will output things like cDNA position and CDS position (e.g. with or without counting the UTR)

The https://mutalyzer.nl/ tool also looks interesting

These may not be the most lightweight or purpose built, and only may work on certain organisms

I think the reason for not having such a purpose built tool is that it can be a complex task given the nature of things like overlapping genes or similar phenomenon, so VEP and other tools make best-attempt efforts to report all possible results

ADD COMMENT
0
Entering edit mode
6.8 years ago
Noushin N ▴ 600

Transvar webserver can handle this task.

As you said, there will likely be multiple hits for each genomic positions.

ADD COMMENT

Login before adding your answer.

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