Entering edit mode
7.4 years ago
sustcyucw
▴
20
I have several BED file of transcripts, and I want to see the coverage of them like IGV shows. But the IGV always crashed because of the low memory, and the coverage also can't show completely. I loaded my BED file on UCSC Genome Browser as custom tracks, but it only show the distribution of every reads.
You should probably use indexed binary format, such as bigbed for annotation files or bigwig for coverage files. Those file are smaller than wig/bed/bedgraph files and don't need to be fully loaded in the genome browser, meaning that you save a lot of memory.
You are on the right track.
Just like Carlo said, now that you have your files in bedGraph format, convert them to bigWig format by using UCSC tool command:
bedGraphToBigWig <inputBedGraph file> <chromosome size file> <output.bw>
This should not be memory intensive nor should it take too long to convert.
Load the bigWig file on the (UCSC) browser to view the coverage on a continuous scale.