Hi all,
I have a quick question:
How can I visualize aligned paired-end reads from RNAseq datasets in UCSC browser?
I already mapped the reads and assembled the transcripts with Tophat/Cufflinks but I'm not sure how to proceed to visualize the mappings
After sorting the BAM files and fixing the mate pairs, I tried to compute the coverage using the following commands:
genomeCoverageBed -bg -split -ibam F.T0.rep2-accepted_hits-fS.bam -g ~/conversion_util/chrom.hg19.sizes > F.T0.rep2-accepted_hits-fS.bg
bedGraphToBigWig F.T0.rep2-accepted_hits-fS.bg ~/conversion_util/chrom.hg19.sizes F.T0.rep2-accepted_hits-fS.bw
But I was not able to visualize properly the mappings. Here I paste a screenshot of how it looks like:
Do you know where is the mistake?
Thanks!
The -split option should exclude the introns. What version of bedtools is this? The latest is 2.17.0
I had been using version 2.16 and didn't worked, but once I changed to version 2.17 worked fine! Thanks!