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 b3b0153 commit 7570ca3
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions vignettes/recount-quickstart.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -38,35 +38,35 @@ bib <- c(
title = "AnnotationDbi: Annotation Database Interface",
year = 2017, doi = "10.18129/B9.bioc.AnnotationDbi"
),
BiocParallel = citation("BiocParallel"),
BiocStyle = citation("BiocStyle"),
BiocParallel = citation("BiocParallel")[1],
BiocStyle = citation("BiocStyle")[1],
derfinder = citation("derfinder")[1],
DESeq2 = citation("DESeq2"),
sessioninfo = citation("sessioninfo"),
downloader = citation("downloader"),
EnsDb.Hsapiens.v79 = citation("EnsDb.Hsapiens.v79"),
GEOquery = citation("GEOquery"),
DESeq2 = citation("DESeq2")[1],
sessioninfo = citation("sessioninfo")[1],
downloader = citation("downloader")[1],
EnsDb.Hsapiens.v79 = citation("EnsDb.Hsapiens.v79")[1],
GEOquery = citation("GEOquery")[1],
GenomeInfoDb = RefManageR::BibEntry(
bibtype = "manual",
key = "GenomeInfoDb",
author = "Sonali Arora and Martin Morgan and Marc Carlson and H. Pagès",
title = "GenomeInfoDb: Utilities for manipulating chromosome and other 'seqname' identifiers",
year = 2017, doi = "10.18129/B9.bioc.GenomeInfoDb"
),
GenomicFeatures = citation("GenomicFeatures"),
GenomicRanges = citation("GenomicRanges"),
IRanges = citation("IRanges"),
GenomicFeatures = citation("GenomicFeatures")[1],
GenomicRanges = citation("GenomicRanges")[1],
IRanges = citation("IRanges")[1],
knitr = citation("knitr")[3],
org.Hs.eg.db = citation("org.Hs.eg.db"),
RCurl = citation("RCurl"),
org.Hs.eg.db = citation("org.Hs.eg.db")[1],
RCurl = citation("RCurl")[1],
recount = citation("recount")[1],
recountworkflow = citation("recount")[2],
phenopredict = citation("recount")[3],
regionReport = citation("regionReport"),
rentrez = citation("rentrez"),
regionReport = citation("regionReport")[1],
rentrez = citation("rentrez")[1],
RefManageR = citation("RefManageR")[1],
rmarkdown = citation("rmarkdown")[1],
rtracklayer = citation("rtracklayer"),
rtracklayer = citation("rtracklayer")[1],
S4Vectors = RefManageR::BibEntry(
bibtype = "manual", key = "S4Vectors",
author = "Hervé Pagès and Michael Lawrence and Patrick Aboyoun",
Expand All @@ -80,7 +80,7 @@ bib <- c(
title = "SummarizedExperiment: SummarizedExperiment container",
year = 2017, doi = "10.18129/B9.bioc.SummarizedExperiment"
),
testthat = citation("testthat")
testthat = citation("testthat")[1]
)
```

Expand Down

0 comments on commit 7570ca3

Please sign in to comment.