Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

check uwot version #24

Merged
merged 1 commit into from
Dec 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ RUN unset ALI_TOKEN

# Install dependencies
RUN R -e "devtools::install_github(c('evocellnet/ksea', 'omarwagih/rmotifx', 'ecnuzdd/PhosMap'))"
RUN R -e "devtools::install_version('Matrix', version='1.5-3')"
RUN R -e "remove.packages('uwot')"
RUN R -e "remove.packages('Matrix')"
RUN R -e "devtools::install_version('uwot', version='0.1.14')"
RUN sudo apt-get install -y libgtk-3-dev cmake build-essential libcurl4-gnutls-dev libxml2 libxml2-dev libodbc1 libssl-dev libv8-dev libsodium-dev&& apt-get clean
RUN Rscript /srv/shiny-server/r_packages_install.R

Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,12 @@ This tool is developed with R, so if you want to run it locally, you may do some
install.packages('devtools')
require(devtools)

install_version('Matrix', version = '1.5-3')
install_github('evocellnet/ksea')
install_github('ecnuzdd/PhosMap')

remove.packages('uwot')
remove.packages('Matrix')
devtools::install_version('uwot', version='0.1.14')
```
- [6] **click "Run App".** View the file ui.R, then just click button "Run App", Phosmap will start.

Expand Down
Loading