Find loops using chromosight
getLoops(
x,
resolution = NULL,
output_prefix = file.path("chromosight", "chromo"),
norm = "auto",
max.dist = "auto",
min.dist = "auto",
min.separation = "auto",
n.mads = 5L,
pearson = "auto",
nreads = "no",
ncores = 1L
)A HiCExperiment object
Which resolution to use to search loops
Prefix to chromosight output (default: "chromosight/chromo")
Normalization parameter for chromosight
Min and max distance to use to filter for significant loops
Minimum separation between anchors of potential loops
Number of MADs to use to filter relevant bins to search for loops
Minimum Pearson correlation score to use to filter for significant loops
Number of reads to subsample to before searching for loops
Number of cores for chromosight
A HiCExperiment object with a new "loops" topologicalFeatures
storing significant interactions identified by chromosight, and an additional
chromosight_args metadata entry.
contacts_yeast <- contacts_yeast()
#> see ?HiContactsData and browseVignettes('HiContactsData') for documentation
#> loading from cache
if (FALSE) { # \dontrun{
contacts_yeast <- getLoops(contacts_yeast)
metadata(contacts_yeast)$chromosight_args
topologicalFeatures(contacts_yeast, 'loops')
} # }