pybedtools.bedtool.BedTool.all_hits

BedTool.all_hits(interval, same_strand=False, overlap=0.0)[source]

Return all intervals that overlap interval.

Calls the all_hits method of an IntervalFile to return all intervals in this current BedTool that overlap interval.

Require that overlaps have the same strand with same_strand=True.

Notes:

If this current BedTool is generator-based, it will be converted into a file first.

If this current BedTool refers to a BAM file, it will be converted to a BED file first using default arguments. If you don’t want this to happen, please convert to BED first before using this method.