Entering edit mode
5.6 years ago
fr
▴
220
I have a binned genome (file G.bed
) that I'm trying to intersect with another file (myfile.bed
). It is possible that some of the bins in G.bed
have multiple matches in myfile.bed
).
I was going to use bedtools intersect -a G.bed -b myfile.bed -wo
, or bedtools intersect -b G.bed -a myfile.bed -wo
.
but if I understand correctly this will give the intersection to either file on a 1:1 relationship right? Or would it also add additional rows for multiple matches? (i.e. exploding rows)
Thanks a lot in advance