Skip to content

Commit 3b6c44c

Browse files
committed
moving to v0.6.1
1 parent 5157867 commit 3b6c44c

4 files changed

+19
-13
lines changed

Dockerfile

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,10 @@ RUN R -e 'install.packages("dplyr", repos="https://stat.ethz.ch/CRAN/")'
5959
RUN R -e 'install.packages("seqinr", repos="https://stat.ethz.ch/CRAN/")'
6060
RUN R -e 'library(devtools);install_github("tobiasgf/lulu")'
6161
RUN R -e 'install.packages("BiocManager",dependencies=TRUE,repos="https://stat.ethz.ch/CRAN/")'
62-
RUN R -e 'BiocManager::install("DECIPHER")'
63-
RUN R -e 'BiocManager::install("dada2")'
62+
#RUN R -e 'BiocManager::install("DECIPHER")'
63+
#RUN R -e 'BiocManager::install("dada2")'
64+
RUN R -e 'library(devtools);devtools::install_github("benjjneb/dada2", ref="v1.16")'
65+
RUN R -e 'install.packages("https://www.bioconductor.org/packages/3.11/bioc/src/contrib/Archive/DECIPHER/DECIPHER_2.16.0.tar.gz", repos = NULL, type = "source")'
6466

6567

6668
# ----- Libraries deployments -----

README.md

+15-11
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ See below for full instructions
1212

1313
# Accessing the webserver
1414

15-
The execution of the `start_slim_v0.6.sh` script deploys and start the webserver.
15+
The execution of the `start_slim_v0.6.1.sh` script deploys and start the webserver.
1616
By default, the webserver is accessible on the 8080 port.
1717

1818
* To access it on a remote server from your machine, type the server IP address followed by ":8080" (for example `156.241.0.12:8080`) from an internet browser (prefer Firefox and Google Chrome).
@@ -149,12 +149,12 @@ First of all, docker needs to be installed on the machine. You can find instruct
149149
* [docker for Ubuntu](https://docs.docker.com/install/linux/docker-ce/ubuntu/)
150150
* [docker for macOS](https://docs.docker.com/docker-for-mac/install/)
151151

152-
To install SLIM, get the last stable release [here](https://github.com/trtcrd/SLIM/archive/v0.6.tar.gz) or, using terminal :
152+
To install SLIM, get the last stable release [here](https://github.com/trtcrd/SLIM/archive/v0.6.1.tar.gz) or, using terminal :
153153
```bash
154154
sudo apt-get update && apt-get install git curl
155-
curl -OL https://github.com/trtcrd/SLIM/archive/v0.6.tar.gz
156-
tar -xzvf v0.6.tar.gz
157-
cd SLIM-0.6
155+
curl -OL https://github.com/trtcrd/SLIM/archive/v0.6.1.tar.gz
156+
tar -xzvf v0.6.1.tar.gz
157+
cd SLIM-0.6.1
158158
```
159159

160160
Before deploying SLIM, you need to configure the mailing account that will be used for mailing service.
@@ -174,13 +174,13 @@ exports.mailer = {
174174
```
175175

176176

177-
As soon as docker is installed and running, the SLIM archive downloaded and the mailing account set, it can be deployed by using the two scripts `get_dependencies_slim_v0.6.sh` and `start_slim_v0.6.sh` as **super user**.
178-
* `get_dependencies_slim_v0.6.sh` fetches all the bioinformatics tools needed from their respective repositories.
179-
* `start_slim_v0.6.sh` destroys the current running webserver to replace it with a new one. **/!\\** All the files previously uploaded and the results of analysis will be detroyed during the process.
177+
As soon as docker is installed and running, the SLIM archive downloaded and the mailing account set, it can be deployed by using the two scripts `get_dependencies_slim_v0.6.1.sh` and `start_slim_v0.6.1.sh` as **super user**.
178+
* `get_dependencies_slim_v0.6.1.sh` fetches all the bioinformatics tools needed from their respective repositories.
179+
* `start_slim_v0.6.1.sh` destroys the current running webserver to replace it with a new one. **/!\\** All the files previously uploaded and the results of analysis will be detroyed during the process.
180180

181181
```bash
182-
sudo bash get_dependencies_slim_v0.6.sh
183-
sudo bash start_slim_v0.6.sh
182+
sudo bash get_dependencies_slim_v0.6.1.sh
183+
sudo bash start_slim_v0.6.1.sh
184184
```
185185

186186
The server is configured to use up to 8 CPU cores per job. The amount of available cores will determine the amount of job that can be executed in parallel (1-8 -> 1 job, 16 -> 2 jobs, etc.). To admin and access SLIM logs, please refer to the docker command line [documentation](https://docs.docker.com/engine/reference/commandline/docker/).
@@ -219,9 +219,13 @@ Please refer to the wiki pages to learn [how to create a module](https://github.
219219

220220
# Version history
221221

222+
### v0.6.1
223+
224+
Dockerfile: updated to DADA2 v1.16 and DECIPHER v2.16.0, cleaned the docker recipe
225+
222226
### v0.6
223227

224-
BUGFIX: resolved issues with the order of module execution when DADA2 is used.
228+
BUGFIX: resolved issues with the order of module execution when DADA2 is used.
225229
BUGFIX: resolved issues with the pipeline.conf file that did not included the checkbox and radio buttons.
226230

227231
### v0.5.3
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)