Skip to content

Commit 2f85609

Browse files
Update README.md
1 parent a0ae52d commit 2f85609

1 file changed

Lines changed: 14 additions & 21 deletions

File tree

README.md

Lines changed: 14 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -49,22 +49,18 @@ Some functions require packages that are noy available anymore on Bioconductor (
4949
These can be installed (in the following order) as indicated below:
5050

5151
```r
52-
# Install devtools from CRAN
53-
install.packages("devtools")
54-
55-
# Or the development version from GitHub:
56-
## install.packages("devtools")
57-
## devtools::install_github("r-lib/devtools")
52+
# Install remotes from CRAN
53+
if (!require("remotes")) install.packages("remotes")
5854

5955
# Install SUSHI package
60-
devtools::install_github("https://github.com/PhanstielLab/Sushi",
61-
build_manual = FALSE,
62-
build_vignettes = FALSE)
56+
remotes::install_github("https://github.com/PhanstielLab/Sushi",
57+
build_manual = FALSE,
58+
build_vignettes = FALSE)
6359

6460
# Install diffloop package
65-
devtools::install_github("https://github.com/aryeelab/diffloop",
66-
build_manual = FALSE,
67-
build_vignettes = FALSE)
61+
remotes::install_github("https://github.com/aryeelab/diffloop",
62+
build_manual = FALSE,
63+
build_vignettes = FALSE)
6864
```
6965

7066

@@ -93,17 +89,13 @@ Certain functions of this package require that `bedtools` is installed on your s
9389

9490
## Installation of `Rseb`
9591
```r
96-
# Install devtools from CRAN
97-
install.packages("devtools")
98-
99-
# Or the development version from GitHub:
100-
## install.packages("devtools")
101-
## devtools::install_github("r-lib/devtools")
92+
# Install remotes from CRAN
93+
if (!require("remotes")) install.packages("remotes")
10294

10395
# Install the Rseb package
104-
devtools::install_github("sebastian-gregoricchio/Rseb",
105-
build_manual = TRUE,
106-
build_vignettes = TRUE)
96+
remotes::install_github("sebastian-gregoricchio/Rseb",
97+
build_manual = TRUE,
98+
build_vignettes = TRUE)
10799
```
108100
<br />
109101

@@ -130,3 +122,4 @@ This package is under a [GNU General Public License (version 3)](https://sebasti
130122

131123
#### Contributors
132124
[![contributors](https://contrib.rocks/image?repo=sebastian-gregoricchio/Rseb)](https://sebastian-gregoricchio.github.io/)
125+

0 commit comments

Comments
 (0)