Gff Or Bed File For Hg19 Genome
2
1
Entering edit mode
10.6 years ago
rob.costa1234 ▴ 310

Could some one point me to a URL to download the gff/ gtf/ bed reference file for hg19 which i want to use to map whole genome DNA seq file

Thanks

genome seq gff hg19 • 22k views
ADD COMMENT
5
Entering edit mode
10.6 years ago

Just use the UCSC table browser.

ADD COMMENT
5
Entering edit mode
8.3 years ago

if you have a fasta file such as then human reference

human_hg19.fa

and you samtools index it

samtools faidx human_hg19.fa

then you can generate the whole genome bed file by entering, using awk for instance, a "0" column between the first 2 columns of the .fai file generated previously

awk '{print $1 "\t0\t" $2}' human_hg19.fa.fai > human_hg19.bed
ADD COMMENT

Login before adding your answer.

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