Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to view splice junction tracks on ucsc browser #52

Open
varsha090597 opened this issue Aug 6, 2020 · 1 comment
Open

Unable to view splice junction tracks on ucsc browser #52

varsha090597 opened this issue Aug 6, 2020 · 1 comment

Comments

@varsha090597
Copy link

Hi,

I ran the junctionseq pipeline and got the Splice Junction Tracks which were generated automatically by the writeCompleteResults. When I tried creating tracks in the ucsc genome browser with these files, I get this error:
image

Is seems like there is an issue with the input file format, but I am not sure.

Thanks!

@hartleys
Copy link
Owner

UCSC uses "chr1/chr2/chrX/etc" style chromosome names. So you need to change the chromosome names to match this.

Your chromosomes are in "1/2/X/etc" format (without the "chr"). So you need to add "chr" to the start of each line.

zcat mybedfile.bed.gz | sed 's/^[0-9]/chr/g' | gzip > mybedfile.fixed.bed.gz

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants