Skip to content

Commit

Permalink
Update README.Rmd
Browse files Browse the repository at this point in the history
fixed #5
  • Loading branch information
mikelove authored Dec 21, 2018
1 parent 6c2e3f3 commit 238b672
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ Also useful are Kasper Daniel Hansen's [Bioconductor class notes](http://kasperd

## Install

For details go to http://bioconductor.org/install/

```
source("http://bioconductor.org/biocLite.R")
biocLite()
biocLite(c("package1","package2"))
library(BiocInstaller)
biocVersion() # what Bioc version is on your machine?
biocValid() # are packages up to date?
# what Bioc version is release
if (!requireNamespace("BiocManager"))
install.packages("BiocManager")
BiocManager::install()
BiocManager::install(c("package1","package2")
BiocManager::valid() # are packages up to date?
# what Bioc version is release right now?
http://bioconductor.org/bioc-version
# what Bioc versions are release/devel
# what Bioc versions are release/devel?
http://bioconductor.org/js/versions.js
```

more information at http://www.bioconductor.org/install/

## help within R

Simple help:
Expand Down

0 comments on commit 238b672

Please sign in to comment.