Skip to content

Commit

Permalink
v1.21.10 -- as predicted v1.21.9 failed on R CMD check instead of bui…
Browse files Browse the repository at this point in the history
…ld. Now use crop = NULL
  • Loading branch information
lcolladotor committed Apr 24, 2020
1 parent c63ec2c commit c7b2fc8
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
5 changes: 2 additions & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: regionReport
Type: Package
Title: Generate HTML or PDF reports for a set of genomic regions or DESeq2/edgeR results
Version: 1.21.9
Version: 1.21.10
Date: 2020-04-23
Authors@R: c(person("Leonardo", "Collado-Torres", role = c("aut", "cre"), email
= "lcolladotor@gmail.com", comment = c(ORCID = "0000-0003-2140-308X")),
Expand Down Expand Up @@ -38,8 +38,7 @@ Imports:
rmarkdown (>= 0.9.5),
S4Vectors,
SummarizedExperiment,
utils,
magick
utils
Suggests:
BiocManager,
biovizBase,
Expand Down
18 changes: 18 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
# regionReport 1.21.10

BUG FIXES

* Add `crop = NULL` to all template Rmarkdown files. Drop `magick` as a
depencency since cropping is not used on the reports (as done through
`BiocStyle` by default). This is again related to responding to
https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016645.html.

# regionReport 1.21.9

BUG FIXES

* Ran another test in preparation for
https://stat.ethz.ch/pipermail/bioc-devel/2020-April/016645.html after the
test in version 1.21.8 failed. The code will now be run in the example of
`derfinderReport()` instead of the vignette.

# regionReport 1.21.8

BUG FIXES
Expand Down
2 changes: 1 addition & 1 deletion inst/DESeq2Exploration/DESeq2Exploration.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This section contains the code for setting up the rest of the report.
```{r docSetup, bootstrap.show.code = FALSE, dev = device, bootstrap.show.message=FALSE}
## knitrBoostrap and device chunk options
library('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device)
opts_chunk$set(bootstrap.show.code = FALSE, dev = device, crop = NULL)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
```

Expand Down
2 changes: 1 addition & 1 deletion inst/basicExploration/basicExploration.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Most plots were made with using `ggplot2` `r citep(bib[['ggplot2']])`.
```{r docSetup, bootstrap.show.code = FALSE, dev = device, bootstrap.show.message=FALSE}
## knitrBoostrap and device chunk options
library('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device)
opts_chunk$set(bootstrap.show.code = FALSE, dev = device, crop = NULL)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
```

Expand Down
2 changes: 1 addition & 1 deletion inst/regionExploration/regionExploration.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ Most plots were made with using `ggplot2` `r citep(bib[['ggplot2']])`.
```{r docSetup, bootstrap.show.code = FALSE, dev = device, bootstrap.show.message=FALSE}
## knitrBoostrap and device chunk options
library('knitr')
opts_chunk$set(bootstrap.show.code = FALSE, dev = device)
opts_chunk$set(bootstrap.show.code = FALSE, dev = device, crop = NULL)
if(!outputIsHTML) opts_chunk$set(bootstrap.show.code = FALSE, dev = device, echo = FALSE)
```

Expand Down

0 comments on commit c7b2fc8

Please sign in to comment.