gr.findoverlaps | R Documentation |
GenomicRanges::findOverlaps
with added functionalityWrapper to GenomicRanges::findOverlaps
with added functionality
Returns GRanges
of matches with two additional fields:
$query.id
- index of matching query
$subject.id
- index of matching subject
Optional "by"
field is a character scalar that specifies a metadata column present in both query and subject
that will be used to additionally restrict matches, i.e. to pairs of ranges that overlap and also
have the same values of their "by"
fields
gr.findoverlaps(
query,
subject,
ignore.strand = TRUE,
first = FALSE,
qcol = NULL,
scol = NULL,
type = "any",
by = NULL,
return.type = "same",
max.chunk = 1e+13,
verbose = FALSE,
mc.cores = 1,
maxgap = -1L,
...
)
query |
Query |
subject |
Subject |
ignore.strand |
boolean Strand ignored (default = TRUE) |
first |
boolean Flag if TRUE restricts to only the first match of the subject. If FALSE will return all matches. (default = FALSE) |
qcol |
|
scol |
|
type |
|
by |
vector Meta-data column to consider when performing overlaps (default = NULL) |
return.type |
character Select data format to return (supplied as character): |
max.chunk |
integer Maximum number of |
verbose |
boolean Flag to increase the verbosity. (default = FALSE) |
mc.cores |
Number of cores to use when running in chunked mode (default = 1) |
... |
Additional arguments sent to |
GRanges
pile of the intersection regions, with query.id
and subject.id
marking sources
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.