Skip to content

Commit

Permalink
Update installation.md
Browse files Browse the repository at this point in the history
Fixes #46
  • Loading branch information
scharch authored Feb 1, 2023
1 parent 5a7c0d1 commit e2b5ec2
Showing 1 changed file with 14 additions and 6 deletions.
20 changes: 14 additions & 6 deletions docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,23 @@

* The following `R` command will install almost all of the remaining `R` package dependencies:
```
install.packages(c("alakazam", "ape", "CollessLike", "data.table", "dplyr", "entropy", "jsonlite", "magrittr", "Peptides", "RecordLinkage", "shazam", "seqinr", "stringdist", "stringr", "testthat", "textmineR", "yaml"))
install.packages(c("alakazam", "ape", "data.table", "dplyr", "entropy", "jsonlite", "magrittr", "Peptides", "RecordLinkage", "shazam", "seqinr", "stringdist", "stringr", "testthat", "textmineR", "yaml"))
```

* CollessLike is no longer available on CRAN, but can be installed from GitHub:
```
library(devtools)
devtools::install_github("https://github.com/cran/CollessLike")
```
(try `http://` if `https://` URLs are not supported)

* `Biostrings` needs to be installed in a special way:
```
source("https://bioconductor.org/biocLite.R")
biocLite("Biostrings")
```
(try `http://` if `https://` URLs are not supported)
```
if (!require("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("Biostrings")
```

* Once all of the above are installed, the following lines will load `sumrep` into your workspace:
```
Expand Down

0 comments on commit e2b5ec2

Please sign in to comment.