This is a test version of Biostars. For the public version, visit https://www.biostars.org.
bed file of gene body fro hg19

Can some one direct me where can I find gene body coordinates as bed file (other format) for Hg19. I want to use it in IGV

gene body hg19

1 answer

One way via the command line:

$ wget -qO- ftp://ftp.sanger.ac.uk/pub/gencode/release_21/gencode.21.annotation.gtf.gz \
    | gunzip --stdout - \
    | gtf2bed - \
    > gencode.21.bed​

Log in to answer this question.