Browse code

replace BiocInstaller biocLite mentions with BiocManager

LiNk-NY authored on 30/08/2018 17:49:42
Showing 3 changed files

... ...
@@ -9,7 +9,7 @@ Description: GSNAP and GMAP are a pair of tools to align short-read
9 9
         methods to work with GMAP and GSNAP from within R. In addition,
10 10
         it provides methods to tally alignment results on a
11 11
         per-nucleotide basis using the bam_tally tool.
12
-Version: 1.23.0
12
+Version: 1.23.1
13 13
 Depends: R (>= 2.15.0), methods, GenomeInfoDb (>= 1.1.3),
14 14
         GenomicRanges (>= 1.31.8), Rsamtools (>= 1.31.2)
15 15
 Imports: S4Vectors (>= 0.17.25), IRanges (>= 2.13.12), BiocGenerics (>= 0.25.1),
... ...
@@ -41,8 +41,8 @@ destDir = ".", license = "Artistic-2.0", pkgName)
41 41
 library(gmapR)
42 42
 
43 43
 if (!require(BSgenome.Dmelanogaster.UCSC.dm3)) {
44
-  library(BiocInstaller)
45
-  biocLite("BSgenome.Dmelanogaster.UCSC.dm3")
44
+  library(BiocManager)
45
+  BiocManager::install("BSgenome.Dmelanogaster.UCSC.dm3")
46 46
   library(BSgenome.Dmelanogaster.UCSC.dm3)
47 47
 }
48 48
 
... ...
@@ -125,8 +125,9 @@ example demonstrates:
125 125
 library(gmapR)
126 126
 
127 127
 if (!suppressWarnings(require(BSgenome.Dmelanogaster.UCSC.dm3))) {
128
-  source("http://bioconductor.org/biocLite.R")
129
-  biocLite("BSgenome.Dmelanogaster.UCSC.dm3")
128
+  if (!requireNamespace("BiocManager", quietly=TRUE))
129
+      install.packages("BiocManager")
130
+  BiocManager::install("BSgenome.Dmelanogaster.UCSC.dm3")
130 131
   library(BSgenome.Dmelanogaster.UCSC.dm3)
131 132
 }
132 133
 
... ...
@@ -348,8 +349,9 @@ object:
348 349
 
349 350
 <<create_hg19_GmapGenome, eval=FALSE>>=
350 351
 if (!suppressWarnings(require(BSgenome.Hsapiens.UCSC.hg19))) {
351
-  source("http://bioconductor.org/biocLite.R")
352
-  biocLite("BSgenome.Hsapiens.UCSC.hg19")
352
+  if (!requireNamespace("BiocManager", quietly=TRUE))
353
+      install.packages("BiocManager")
354
+  BiocManager::install("BSgenome.Hsapiens.UCSC.hg19")
353 355
   library(BSgenome.Hsapiens.UCSC.hg19)
354 356
 }
355 357
 gmapGenome <- GmapGenome(genome=Hsapiens,