For some reason I can't view bedgraph files on the IGB. specifically I am referring to files of data of the Arabidopsis genome.
Has anybody else had this issue? Does anyone have a solution to this?
Thank you
For some reason I can't view bedgraph files on the IGB. specifically I am referring to files of data of the Arabidopsis genome.
Has anybody else had this issue? Does anyone have a solution to this?
Thank you
Hi,
Could you post a link to the file or email a sample to one of the IGB team? We would be happy to take a look.
You can send it to igbhelper@gmail.com
Regarding bedgraph:
You should be able to load a bedgraph file into IGB in the usual way:
However, if your file is very large, it would be good to sort, compress and index it using bgzip and tabix before loading it into IGB. If you do that, then you can load just a part of your file into IGB and the load will be much faster.
Using bgzip and tabix:
sort -k1,1 -k2,2n FILE.bedgraph | bgzip > FILE.bedgraph.gz
tabix -s 1 -b 2 -e 3 FILE.bedgraph.gz
The first commands creates a sorted, indexed, compressed bedgraph file - FILE.bedgraph.gz. The second command creates an index for it - FILE.bedgraph.gz.tbi. Make sure you always store the index (.tbi file) in the same directory as the bedgraph.gz file.
Tips:
Use of this site constitutes acceptance of our User Agreement and Privacy Policy.
Do you mean IGV?
I am actually referring to the IGB (integrated genome browser).