Converts interaction or feature data from ChromatinContacts to tibble.
Usage
as_tibble(x, which = "interactions")
# S4 method for class 'ChromatinContacts'
as_tibble(
x,
which = c("interactions", "compartments", "TADs", "loops", "multi_contacts")
)Examples
if (FALSE) { # \dontrun{
cc <- ChromatinContacts("sample.cool") |> import()
df <- as_tibble(cc)
tads_df <- as_tibble(cc, which = "TADs")
} # }
