File: readAtomicVector.Rd

package info (click to toggle)
r-bioc-alabaster.base 1.6.1%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 1,652 kB
  • sloc: cpp: 11,377; sh: 29; makefile: 2
file content (35 lines) | stat: -rw-r--r-- 978 bytes parent folder | download | duplicates (2)
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/readAtomicVector.R
\name{readAtomicVector}
\alias{readAtomicVector}
\alias{loadAtomicVector}
\title{Read an atomic vector from disk}
\usage{
readAtomicVector(path, metadata, ...)
}
\arguments{
\item{path}{Path to a directory created with any of the vector methods for \code{\link{saveObject}}.}

\item{metadata}{Named list containing metadata for the object, see \code{\link{readObjectFile}} for details.}

\item{...}{Further arguments, ignored.}
}
\value{
The vector described by \code{info}.
}
\description{
Read a vector consisting of atomic elements from its on-disk representation.
This is usually not directly called by users, but is instead called by dispatch in \code{\link{readObject}}.
}
\examples{
tmp <- tempfile()
saveObject(setNames(runif(26), letters), tmp)
readObject(tmp)

}
\seealso{
\code{"\link{saveObject,integer-method}"}, for one of the staging methods.
}
\author{
Aaron Lun
}