-
Notifications
You must be signed in to change notification settings - Fork 230
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
BED file with a space delimiter misses the first annotation #1228
Comments
Thanks for the report. Its not specified at UCSC, but the general consensus seems to be that bed files should be tab delimited. For sure a space delimited bed file will not work with many tools. Having said that, as its not specified we have tried to be whitespace agnostic, and I will fix this. |
See, for example https://bedtools.readthedocs.io/en/latest/ |
Maybe this is helpful. Just observed that when I add a line with
|
Yes I see the issue, it a little bit tricky to fix but I will get to it in asap, there is a point release already tested and it won't make that one. In the meantime a leading header line will work as you discovered. Or just make the files tab delimited. Most tools that accept bed files are going to assume tab delimitation, bedtools requires it for example.
|
Thanks |
I have these two bed files:
BED file with a space delimiter
BED file with a tab delimiter
I load them into igv with:
but the first annotation of the bed file with spaces does not show up. (I use a
locus: "chr2:1-20"
)It doesn't seem that specifying the
delimiter
key makes a difference.Even If I add 100 to the genomic location, I dont see a difference. The first annotation in the bed file with spaces does not get drawn.
The text was updated successfully, but these errors were encountered: