From 4dbfb3492816f01604c7fde472f00afd01938576 Mon Sep 17 00:00:00 2001 From: lcolladotor Date: Thu, 12 Dec 2024 16:16:03 -0500 Subject: [PATCH] Prevent more 'subscript out of bounds' by using the first citation --- vignettes/derfinderHelper.Rmd | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/vignettes/derfinderHelper.Rmd b/vignettes/derfinderHelper.Rmd index 0eb1e22..81f98cb 100644 --- a/vignettes/derfinderHelper.Rmd +++ b/vignettes/derfinderHelper.Rmd @@ -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] ) ```