Browse code

replace BiocInstaller biocLite mentions with BiocManager

LiNk-NY authored on 30/08/2018 17:46:09
Showing 2 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: chromstaR
2 2
 Type: Package
3 3
 Title: Combinatorial and Differential Chromatin State Analysis for ChIP-Seq Data
4
-Version: 1.7.2
4
+Version: 1.7.3
5 5
 Author: Aaron Taudt, Maria Colome Tatche, Matthias Heinig, Minh Anh Nguyen
6 6
 Maintainer: Aaron Taudt <aaron.taudt@gmail.com>
7 7
 Description: This package implements functions for combinatorial and differential analysis of ChIP-seq data. It includes uni- and multivariate peak-calling, export to genome browser viewable files, and functions for enrichment analyses.
... ...
@@ -31,8 +31,9 @@ To install the *development* version from Github, follow the steps given below.
31 31
 3. Open R and install all dependencies. Please ensure that you have writing permissions to install packages. Execute the following lines one by one:
32 32
 
33 33
    install.packages("devtools")  
34
-	 source("http://bioconductor.org/biocLite.R")  
35
-	 biocLite(c("GenomicRanges","GenomicAlignments","bamsignals"))  
34
+	 if (!requireNamespace("BiocManager", quietly=TRUE))
35
+    	 install.packages("BiocManager")
36
+	 BiocManager::install(c("GenomicRanges","GenomicAlignments","bamsignals"))  
36 37
 	 library(devtools)  
37 38
 	 install_github("ataudt/chromstaRData")  
38 39
 	 install_github("ataudt/chromstaR")