Hi,
Does anyone know whether we can use bedtools for finding overlap exons for more than a few bed files, i.e for a list of bed files?
I know there is the -b
option for more than 1 bed file, but I need to do it for hundreds of bed files. Is this possible?
Thank you,
Maria
It seems that it's possible to use wildcards with
-b
option, from bedtools webpage:So it wouldn't be necessary to perform a loop, just
-b *.bed
. But I've never use it.I just tried this but it gets the error:
Segmentation fault (core dumped)
.. Is there a restriction for the amount of bed files we put?Thank you
Thank you both. I will try both these. Hope it works!