This is a test version of Biostars. For the public version, visit https://www.biostars.org.
overlap BED files, but account for region name

I recently found ReMap which is a great resource of TF binding sites across different studies. They provide the binding sites in BED format where each region is named based on the TF. Although it's relatively trivial to overlap two BED files (using something like bedtools fisher or bedtools intersect), that assumes that you're just overlapping two sets of regions. Is there a way to generate the results separated by region name? I could split by TF and process each one separately in a giant loop, but that seems inefficient.

bed overlap bedtools

1 answer

Your proposal of splitting into separate files by name seems reasonable to me. If that's not satisfying, nothing is stopping you from writing a 20-line perl script that does the intersection in a name-aware manner. Genome set operations aren't hard, it's just more convenient to use existing tools.

Thanks for confirming. I just wanted to make sure I am not reinventing the wheel or missing something.

Log in to answer this question.