| checkFeatureNamesOverlap {pRoloc} | R Documentation |
Checks the marker and unknown feature overlap of two MSnSet
instances.
checkFeatureNamesOverlap(x, y, fcolx = "markers", fcoly, verbose = TRUE)
x |
An |
y |
An |
fcolx |
The feature variable to separate unknown
( |
fcoly |
As |
verbose |
If |
Invisibly returns a named list of common markers, unique
x markers, unique y markers in, common unknowns,
unique x unknowns and unique y unknowns.
Laurent Gatto
library("pRolocdata")
data(andy2011)
data(andy2011goCC)
checkFeatureNamesOverlap(andy2011, andy2011goCC)
featureNames(andy2011goCC)[1] <- "ABC"
res <- checkFeatureNamesOverlap(andy2011, andy2011goCC)
res$markersX
res$markersY