Skip to content

Commit

Permalink
Use require() instead of requireNamespace() in vignette
Browse files Browse the repository at this point in the history
  • Loading branch information
hpages committed Apr 8, 2024
1 parent 486d436 commit aa8b2e9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ biocViews: Infrastructure, GenomeAssembly, Annotation, GenomeAnnotation,
DataImport
URL: https://bioconductor.org/packages/UCSC.utils
BugReports: https://github.com/Bioconductor/UCSC.utils/issues
Version: 0.99.5
Version: 0.99.6
License: Artistic-2.0
Encoding: UTF-8
Authors@R: person("Hervé", "Pagès", role=c("aut", "cre"),
Expand Down
6 changes: 3 additions & 3 deletions vignettes/UCSC.utils.Rmd
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
---
title: "The _UCSC.utils_ package"
title: "The **UCSC.utils** package"
author:
- name: Hervé Pagès
affiliation: Fred Hutchinson Cancer Research Center, Seattle, WA
date: "Compiled `r doc_date()`; Modified 15 March 2024"
date: "Compiled `r doc_date()`; Modified 8 April 2024"
package: UCSC.utils
vignette: |
%\VignetteIndexEntry{The UCSC.utils package}
Expand Down Expand Up @@ -31,7 +31,7 @@ functionalities implemented in downstream packages like
Like any other Bioconductor package, `r Biocpkg("UCSC.utils")` should always
be installed with `BiocManager::install()`:
```{r, eval=FALSE}
if (!requireNamespace("BiocManager", quietly = TRUE))
if (!require("BiocManager", quietly=TRUE))
install.packages("BiocManager")
BiocManager::install("UCSC.utils")
```
Expand Down

0 comments on commit aa8b2e9

Please sign in to comment.