Last chance! 50% off unlimited learning
Sale ends in
match
returns a vector of the positions of (first) matches of
its first argument in its second. NOTE: This man page is for the match
S4 generic function
defined in the BiocGenerics package.
See ?base::match
for the default method
(defined in the base package).
Bioconductor packages can define specific methods for objects
(typically vector-like) not supported by the default method.
match(x, table, nomatch=NA_integer_, incomparables=NULL, ...)
?base::match
for a description of
these arguments.
x
giving the position in table
of the first match
if there is a match, otherwise nomatch
.See ?base::match
for more details.Specific methods defined in Bioconductor packages should
behave as consistently as possible with the default method.
base::match
for the default match
method.
showMethods
for displaying a summary of the
methods defined for a given generic function.
selectMethod
for getting the definition of
a specific method.
match
method (defined
for Hits objects).
match # note the dispatch on the 'x' and 'table' args only
showMethods("match")
selectMethod("match", c("ANY", "ANY")) # the default method
Run the code above in your browser using DataLab