This is a test version of Biostars. For the public version, visit https://www.biostars.org.
bigwig file can see in igv but not in ucsc

I use bam2wig covert sam files into bigwig files, and peaks can be seen in igv but shown no data in ucsc. I'm wondering what happened? And my bigwig file size is about 700M.

rna-seq ucsc igv

1 answer

did you use the same chromosome names ('chr' prefix) than in the UCSC browser ?

Thanks your answer, my bigwig file chromosome names only start with number, but i don't know how to make it work.

  • convert you bigwig to wig using the UCSC tools bigWigToWig
  • use sed to change the chromosome names using sed . eg.:

    sed 's/chrom=/chrom=chr/'

  • move the resulting wiggle file to bigwig using wigToBigWig

Dose there any mothod don't have to covert bigwig to wig? can you help me?

it works,Thank you for your help!

Log in to answer this question.