Skip to content

Commit

Permalink
Prevent more 'subscript out of bounds' by using the first citation
Browse files Browse the repository at this point in the history
  • Loading branch information
lcolladotor committed Dec 12, 2024
1 parent d83e34d commit 4dbfb34
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions vignettes/derfinderHelper.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,21 @@ library("RefManageR")
## Write bibliography information
bib <- c(
derfinderHelper = citation("derfinderHelper")[1],
BiocStyle = citation("BiocStyle"),
BiocStyle = citation("BiocStyle")[1],
knitr = citation("knitr")[3],
RefManageR = citation("RefManageR")[1],
rmarkdown = citation("rmarkdown")[1],
R = citation(),
IRanges = citation("IRanges"),
Matrix = citation("Matrix"),
IRanges = citation("IRanges")[1],
Matrix = citation("Matrix")[1],
S4Vectors = RefManageR::BibEntry(
bibtype = "manual", key = "S4Vectors",
author = "Hervé Pagès and Michael Lawrence and Patrick Aboyoun",
title = "S4Vectors: S4 implementation of vector-like and list-like objects",
year = 2017, doi = "10.18129/B9.bioc.S4Vectors"
),
sessioninfo = citation("sessioninfo"),
testthat = citation("testthat")
sessioninfo = citation("sessioninfo")[1],
testthat = citation("testthat")[1]
)
```

Expand Down

0 comments on commit 4dbfb34

Please sign in to comment.