getting exon coordinates
How to get the exon co-ordinates of a particular gene?
• 1,008 views
•
link
1 answer
A combination of bash and awk can do the work, suppose you have the gff file annotation of your gene of interest and a text file with GeneName by line you can do something like :
grep -w -F -f geneofinterest.tsv yourannotationfile.gff | awk '{print $1,$2,$3, $4, $5}'|head
You can save and redirect the output to file
grep -w -F -f geneofinterest.tsv yourannotationfile.gff | awk '{print $1,$2,$3, $4, $5}' > genecoodinate.tsv
I hope this works for you
• 0 views
•
link
Log in to answer this question.
Get genomic coordinates from gene names ;
extracting the exons coordinates on hg38 ;
Intron and exon coordinates of all genes from Hg19 ;etc...
Please do not use
bioinformaticsas a tag unless your post in about the field of bioinformatics itself.