viola.MultiBedpe.to_bedpe_like

MultiBedpe.to_bedpe_like(custom_infonames=[], confidence_intervals: bool = False)

Return a DataFrame in bedpe-like format. When specified, you can add INFOs as additional columns.

Parameters
  • custom_infonames (list-like[str]) – The table names of INFOs to append.

  • confidence_intervals (bool, default False) – Whether or not to consider confidence intervals of the breakpoints. If True, confidence intervals for each breakpoint are represented by [start1, end1) and [start2, end2), respectively. Otherwise, breakpoints are represented by a single-nucleotide resolution.

Returns

A Dataframe in bedpe-like format. The columns include at least the following: [‘chrom1’, ‘start1’, ‘end1’, ‘chrom2’, ‘start2’, ‘end2’, ‘name’, ‘score’, ‘strand1’, ‘strand2’]

Return type

DataFrame