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
|
\name{copy_all-AnnotationFunction-method}
\alias{copy_all,AnnotationFunction-method}
\title{
Copy the AnnotationFunction Object
}
\description{
Copy the AnnotationFunction Object
}
\usage{
\S4method{copy_all}{AnnotationFunction}(object)
}
\arguments{
\item{object}{The \code{\link{AnnotationFunction-class}} object.}
}
\details{
In \code{\link{AnnotationFunction-class}}, there is an environment which
stores some external variables for the annotation function (specified by the
\code{var_import} argument when constructing the \code{\link{AnnotationFunction-class}}
object. This \code{\link{copy_all,AnnotationFunction-method}} hard copies all the
variables into a new isolated environment.
The environment is at \code{object@var_env}.
}
\examples{
# There is no example
NULL
}
|