@@ -49,21 +49,24 @@ The workshop files along with an R runtime environment including all required
49
49
packages and the RStudio (Posit) editor are all bundled in a * docker*
50
50
container. After installation, this docker container can be run on the computer
51
51
and the code and examples from the workshop can be evaluated within this
52
- environment (without the need to install any additional packages or files). The
53
- required steps for installation are:
52
+ environment (without the need to install any additional packages or files).
53
+
54
+ This version of the workshop uses packages from ** Bioconductor release 3.19**
55
+ (May 2024) and hence bases on Bioconductor's docker container for that release
56
+ (* RELEASE_3_19* ). The required steps for installation are:
54
57
55
58
- If you don't already have, install [ docker] ( https://www.docker.com/ ) . Find
56
59
installation information [ here] ( https://docs.docker.com/desktop/ ) .
57
60
- Get the [ docker image] ( https://hub.docker.com/r/jorainer/xcms_tutorials ) of
58
61
this tutorial e.g. from the command line with `docker pull
59
- jorainer/xcms_tutorials: latest `.
62
+ jorainer/xcms_tutorials: RELEASE_3_19 `.
60
63
- Start the docker container, either through the Docker Desktop, or on the
61
64
command line with
62
65
```
63
66
docker run \
64
67
-e PASSWORD=bioc \
65
68
-p 8787:8787 \
66
- jorainer/xcms_tutorials:latest
69
+ jorainer/xcms_tutorials:RELEASE_3_19
67
70
```
68
71
69
72
- Enter ` http://localhost:8787 ` in a web browser and log in with username
@@ -72,9 +75,9 @@ required steps for installation are:
72
75
the * vignettes* folder and evaluate the R code blocks in that document.
73
76
74
77
75
- For manual installation, an R version >= 4.3 .0 is required as well as recent
76
- versions of the packages ` MsExperiment ` , ` Spectra ` and in particular the ` xcms `
77
- (version >= 4.1.0 is needed) . These can be installed using the code below:
78
+ For manual installation, an R version >= 4.4 .0 is required as well as recent
79
+ versions of the packages ` MsExperiment ` , ` Spectra ` and in particular the
80
+ ` xcms ` . These can be installed using the code below:
78
81
79
82
``` r
80
83
install.packages(" BiocManager" )
0 commit comments