inst.all: A inst.all Function

Description Usage Arguments Author(s) Examples

View source: R/inst.all.R

Description

Download, install and load packages from Github repositories.

Usage

1
2
3
inst.all(pckgName, pathGit = NULL, bioc = FALSE, proxy = FALSE,
  urlproxy = "conf_www.ir.vhebron.net", portproxy = 8081,
  force.install = FALSE, ...)

Arguments

pckgName

names of package

pathGit

If Github package: Repository address in the format username/repo[/subdir] .

bioc

TRUE if bioconductor package. Default value is FALSE.

proxy

If Github package: TRUE or FALSE. Default value is FALSE.

urlproxy

If Github package and TRUE proxy: proxy domain

portproxy

If Github package and TRUE proxy: proxy port

force.install

TRUE to force installation

Author(s)

Miriam Mota miriam.mota@vhir.org

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
## cran example: 
# inst.all(pckgName = "rpart")
# inst.all(pckgName = "rpart", force.install = TRUE)


# # bioconductor example: 
# inst.all(pckgName = "IRanges", bioc = TRUE)
# inst.all(pckgName = "IRanges", bioc = TRUE, force.install = TRUE)
 
 
# # github example: 
# inst.all(pckgName = "mmotaF", pathGit = "miriammota")
# inst.all(pckgName = "mmotaF", pathGit = "miriammota", force.install = TRUE)

uebvhir/installifnot documentation built on July 18, 2019, 3:40 p.m.