1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
\name{ssea.start.identify}
\alias{ssea.start.identify}
\title{
Convert identities to indices for MSEA
}
\description{
\code{\link{ssea.start.identify}} finds matching identities for the given
variable name. It searches the members of \code{dat} among the members of
\code{labels} with respect to the \code{varname} attribute, returns the
matching rows of the \code{dat}.
}
\usage{
ssea.start.identify(dat, varname, labels)
}
\arguments{
\item{dat}{data list (source) of the identities that will be searched.
e.g. the information after merging of overlapped genes (containing shared
markers) }
\item{varname}{search and match will be performed with respect to
which attribute (MODULE or NODE or MARKER) }
\item{labels}{the place, where the identities of \code{dat} will be
searched and matched. }
}
\value{
\item{res}{matched rows of \code{dat} among the members of \code{labels}
list according to the \code{varname} attribute}
}
\examples{
## Converts identities (either module names or gene names) to the indices
aa<- data.frame(MODULE=c("Mod1", "Mod1", "Mod2", "Mod2", "Mod3"),
NODE=c("GeneA", "GeneC", "GeneB", "GeneC", "GeneA"))
aa
bb <- ssea.start.identify(aa, "MODULE", c("Mod1"))
bb
cc <- ssea.start.identify(aa, "MODULE", c("Mod1", "Mod3"))
cc
dd <- ssea.start.identify(aa, "NODE", c("GeneA"))
dd
}
\references{
Shu L, Zhao Y, Kurt Z, Byars SG, Tukiainen T, Kettunen J, Orozco LD,
Pellegrini M, Lusis AJ, Ripatti S, Zhang B, Inouye M, Makinen V-P, Yang X.
Mergeomics: multidimensional data integration to identify pathogenic
perturbations to biological systems. BMC genomics. 2016;17(1):874.
}
\author{
Ville-Petteri Makinen
}
\seealso{
\code{\link{ssea.start}}
}
|