| replisting-class {reposTools} | R Documentation |
Provides structure to basic repository information, such as type, URL, subrepositories, etc
Objects can be created by calls of the form new("replisting", ...).
replisting:"matrix" The
information itselfsignature(object = "replisting"): An output of
the informationsignature(object = "replisting"): A verbose
output of the informationsignature(object = "replisting"): Returns
the information matrixsignature(object = "replisting"): Returns
the number of available subrepositoriessignature(object = "replisting"):
Returns the release level for this replistingJeff Gentry
ReposEntry-class,repdatadesc-class
## Note that generally the replisting matrix would come from a
## repository 'replisting' file. Generating it manually here.
a <- matrix(ncol=4,nrow=1)
a[1,] <- c("Test Repository",
"package","http://www.bioconductor.org/repository","/sample/package")
colnames(a) <- c("repname","reptype","repaddrBase","repaddrPath")
z <- new("replisting",replisting=a)
z