Hi, I'm trying to intersect 2 bed files with bedops(V2.4.9) `intersect` with the following command:
`bedops --intersect targets.bed query.all.bed > query.all.intersect.bed`
Only chr1-9 and X were in the result file. All the intervals in 10-22 and Y were missing.
But if I subset `targets.bed` and `query.all.bed` with only intervals on chr22, for example, it worked with no issues.
Another issue is that
For example:
query1.bed
`22 16287318 16287981`
query2.bed
`22 16287253 16287885`
When run the following command, the output was empty.
`bedops --intersect query1.bed query2.bed`
I shared the 2 bed files I used.
Thanks,
JL