Skip to content

Commit

Permalink
Cancel windows install step
Browse files Browse the repository at this point in the history
  • Loading branch information
Miachol committed Jun 23, 2017
1 parent 13c7046 commit db4e35b
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 115 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ vignettes/*.pdf
*.knit.md
inst/extdata/softwares_db_demo.yaml
.Rproj.user
inst/doc
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2017-06-23 Li Jianfeng <[email protected]>

* Cancel windows install step (Download still work)

2017-06-22 Li Jianfeng <[email protected]>

* Use v0.3.0 configr: glue parse be supported
Expand Down
5 changes: 3 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Package: BioInstaller
Title: Lightweight Biology Software Installer
Version: 0.1.1.5
Version: 0.1.2
Authors@R: person("Jianfeng", "Li", email = "[email protected]", role = c("aut", "cre"))
Description:
Description:
Can be used to install and download massive bioinformatics analysis softwares and databases, such as NGS reads mapping tools with its required databases.
Depends:
R (>= 3.3.0)
Expand All @@ -25,3 +25,4 @@ RoxygenNote: 6.0.1
Suggests: knitr,
rmarkdown,
testthat
VignetteBuilder: knitr
8 changes: 4 additions & 4 deletions R/install.R
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ install.github <- function(name = "", download.dir = NULL, destdir = NULL, versi

args.all <- as.list(match.call())
args.all$version <- version
args.all$destdir <- destdir
args.all$download.dir <- download.dir
args.all$destdir <- normalizePath(destdir, "/", FALSE)
args.all$download.dir <- normalizePath(download.dir, "/", FALSE)
args.all$os.version <- get.os()
args.all <- args.all[names(args.all) != ""]
config <- configr::parse.extra(config = config, extra.list = args.all)
Expand Down Expand Up @@ -377,8 +377,8 @@ install.nongithub <- function(name = "", download.dir = NULL, destdir = NULL, ve

args.all <- as.list(match.call())
args.all$version <- version
args.all$destdir <- destdir
args.all$download.dir <- download.dir
args.all$destdir <- normalizePath(destdir, "/", FALSE)
args.all$download.dir <- normalizePath(download.dir, "/", FALSE)
args.all$os.version <- get.os()
args.all <- args.all[names(args.all) != ""]
args.all <- configr::config.list.merge(args.all, extra.list)
Expand Down
Loading

0 comments on commit db4e35b

Please sign in to comment.