Skip to content

Commit 36418ea

Browse files
Merge branch 'master' into devel
2 parents 2558c4d + b2f1c03 commit 36418ea

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Several methods within this package were developed based on the originals implem
3939
## Installation
4040

4141

42-
To install the stable version from CRAN, use:
42+
To install the stable version from [CRAN](https://CRAN.R-project.org/package=pagoda2), use:
4343

4444
```r
4545
install.packages('pagoda2')
@@ -89,10 +89,10 @@ As of version 0.1.3, `pagoda2` should sucessfully install on Mac OS. Furthermore
8989
If you are having trouble setting up `pagoda2` on your system, an alternative approach to work with `pagoda2` is via a Docker container. To use the Docker container, first [install docker](https://docs.docker.com/get-docker/) on your platform and then run the `pagoda2` image with the following command in the shell:
9090

9191
```
92-
docker run -p 8787:8787 pkharchenkolab/pagoda2:latest
92+
docker run -p 8787:8787 -e PASSWORD=pass pkharchenkolab/pagoda2:latest
9393
```
9494

95-
The first time you run this command, it will pull/download several images---please make sure that you have reliable internet access. You can then point your browser to http://localhost:8787/ to access an Rstudio environment with `pagoda2` installed (log in using credentials rstudio/pass). Explore the Docker [--mount option](https://docs.docker.com/storage/volumes/) to allow the Docker image to access your local files.
95+
The first time you run this command, it will pull/download several images---please make sure that you have reliable internet access. You can then point your browser to http://localhost:8787/ to access an Rstudio environment with `pagoda2` installed (please log in using credentials username=`rstudio`, password=`pass`). Explore the Docker [--mount option](https://docs.docker.com/storage/volumes/) to allow the Docker image to access your local files.
9696

9797
### Citation
9898

docker/Dockerfile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
FROM rocker/tidyverse:4.0.1
22

33
LABEL authors="Viktor Petukhov <viktor.s.petuhov@ya.ru>, Evan Biederstedt <evan.biederstedt@gmail.com>" \
4+
version.image="1.0.0" \
5+
version.pagoda2="1.0.0" \
46
version.image="1.0.1" \
57
version.pagoda2="1.0.1" \
68
description="tidyverse image R 4.0.1 to run pagoda2 with Rstudio"
79

8-
910
## Cairo dependencies
1011
RUN apt-get update && apt-get install libxt-dev mesa-common-dev -y
1112

@@ -17,4 +18,4 @@ RUN R -e 'BiocManager::install(c("AnnotationDbi", "BiocGenerics", "GO.db", "pcaM
1718

1819
RUN R -e "install.packages('p2data',dependencies=TRUE, repos='https://kharchenkolab.github.io/drat/', type='source')"
1920

20-
RUN R -e "install.packages('pagoda2',dependencies=TRUE, repos='http://cran.rstudio.com/')"
21+
RUN R -e "install.packages('pagoda2',dependencies=TRUE, repos='http://cran.rstudio.com/')"

0 commit comments

Comments
 (0)