Browse code

1.1.1 move from BiocLite to BiocManager

Peter Blattmann authored on 14/07/2018 10:00:55
Showing 3 changed files

... ...
@@ -1,7 +1,7 @@
1 1
 Package: DominoEffect
2 2
 Type: Package
3 3
 Title: Identification and Annotation of Protein Hotspot Residues
4
-Version: 1.1.0
4
+Version: 1.1.1
5 5
 Author: Marija Buljan and Peter Blattmann
6 6
 Maintainer: Marija Buljan <[email protected]>, 
7 7
     Peter Blattmann <[email protected]>
... ...
@@ -1,3 +1,24 @@
1
+CHANGES IN VERSION 1.1.1
2
+-------------------------
3
+UDPATE
4
+
5
+ o move from bioclite to BiocManager
6
+
7
+
8
+CHANGES IN VERSION 1.1.0
9
+-------------------------
10
+NEW FEATURES
11
+
12
+ o DominoEffect in BioC 3.8 development release
13
+
14
+
15
+CHANGES IN VERSION 1.0.0
16
+-------------------------
17
+NEW FEATURES
18
+
19
+ o DominoEffect in BioC 3.7 release
20
+
21
+
1 22
 CHANGES IN VERSION 0.99.5
2 23
 -------------------------
3 24
 NEW FEATURES
... ...
@@ -18,9 +18,9 @@ library(knitr)
18 18
 
19 19
 The package can be directly installed from the Bioconductor website.
20 20
 ```{r, eval=FALSE}
21
-## try http:// if https:// URLs are not supported
22
-source('https://bioconductor.org/biocLite.R')
23
-biocLite('DominoEffect')
21
+if (!require("BiocManager"))
22
+    install.packages("BiocManager")
23
+BiocManager::install("DominoEffect")
24 24
 ```
25 25
 
26 26