Skip to content

Commit dc7365a

Browse files
authored
Merge pull request #23 from jorainer/jomain
Quick fix for current devel packages
2 parents f3e0d77 + 94b71a3 commit dc7365a

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@ WORKDIR /home/rstudio
1111
COPY --chown=rstudio:rstudio . /home/rstudio/
1212

1313
## Install the xcmsTutorials package and additional required packages
14-
RUN Rscript -e "options(repos = c(CRAN = 'https://cran.r-project.org')); BiocManager::install(ask = FALSE); BiocManager::install('sneumann/xcms', ref = 'jomain')"
14+
RUN Rscript -e "options(repos = c(CRAN = 'https://cran.r-project.org')); BiocManager::install(ask = FALSE); BiocManager::install('sneumann/xcms')"
1515

1616
RUN Rscript -e "options(repos = c(CRAN = 'https://cran.r-project.org')); devtools::install('.', dependencies = TRUE, build_vignettes = TRUE, repos = BiocManager::repositories())"

vignettes/xcms-preprocessing.Rmd

+1
Original file line numberDiff line numberDiff line change
@@ -2279,6 +2279,7 @@ Our data has two columns, one with *retention times* and one with
22792279
data.
22802280

22812281
```{r peaks-plot, fig.width = 12, fig.height = 2.15}
2282+
library(MSnbase)
22822283
chr <- Chromatogram(rtime = cdata$rt, intensity = cdata$intensity)
22832284
par(mar = c(2, 2, 0, 0))
22842285
plot(chr)

0 commit comments

Comments
 (0)