Skip to content

Commit

Permalink
figs not found
Browse files Browse the repository at this point in the history
  • Loading branch information
lgatto committed Apr 21, 2023
1 parent 8a5c10f commit 22bccfa
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Package: RforProteomics
Type: Package
Title: Companion package to the 'Using R and Bioconductor for
proteomics data analysis' publication
Version: 1.37.3
Version: 1.37.4
Authors@R: c(person("Laurent", "Gatto", role=c("aut", "cre"),
email="laurent.gatto@uclouvain.be"),
person("Sebastian", "Gibb", role="ctb",
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# RforProteomics 1

## Changes in version 1.37.4

Using `knitr::include_graphics()` to include figures.

## Changes in version 1.37.3

- I give up: remove that effing figure that is supposedly not found
Expand Down
16 changes: 12 additions & 4 deletions vignettes/RProtVis.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -603,7 +603,9 @@ an1 <- function() {
saveGIF(an1(), movie.name = "msanim1.gif")
```

![MS animation 1](figures/msanim1.gif)
```{r, fig.align = "center"}
knitr::include_graphics("figures/msanim1.gif")
```

The code chunk below scrolls of a slice of retention times while
keeping the retention time constant between 30 and 35 minutes.
Expand All @@ -623,7 +625,9 @@ an2 <- function() {
saveGIF(an2(), movie.name = "msanim2.gif")
```

![MS animation 2](figures/msanim2.gif)
```{r, fig.align = "center"}
knitr::include_graphics("figures/msanim2.gif")
```

## The `r Biocpkg("MSnbase")` infrastructure

Expand Down Expand Up @@ -821,7 +825,9 @@ plotMsiSlice(spectra,
par(oldPar)
```

![mqmsi](./figures/mqmsi-1.png)
```{r, fig.align = "center"}
knitr::include_graphics("figures/mqmsi-1.png")
```

## An interactive `r CRANpkg("shiny")` app for Imaging mass spectrometry

Expand All @@ -834,7 +840,9 @@ library("shiny")
runGitHub("sgibb/ims-shiny")
```

![ims-shiny screeshot](./figures/ims-shiny.png)
```{r, fig.align = "center"}
knitr::include_graphics("figures/ims-shiny.png")
```

# Spatial proteomics

Expand Down

0 comments on commit 22bccfa

Please sign in to comment.