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 99794d5 commit 1715c23
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions vignettes/regionReport.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -70,36 +70,36 @@ library("RefManageR")
bib <- c(
derfinder = citation("derfinder")[1],
regionReport = citation("regionReport")[1],
knitrBootstrap = citation("knitrBootstrap"),
BiocStyle = citation("BiocStyle"),
ggbio = citation("ggbio"),
ggplot2 = citation("ggplot2"),
knitrBootstrap = citation("knitrBootstrap")[1],
BiocStyle = citation("BiocStyle")[1],
ggbio = citation("ggbio")[1],
ggplot2 = citation("ggplot2")[1],
knitr = citation("knitr")[3],
RefManageR = citation("RefManageR")[1],
rmarkdown = citation("rmarkdown")[1],
DT = citation("DT"),
DT = citation("DT")[1],
R = citation(),
IRanges = citation("IRanges"),
sessioninfo = citation("sessioninfo"),
IRanges = citation("IRanges")[1],
sessioninfo = citation("sessioninfo")[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"
),
GenomicRanges = citation("GenomicRanges"),
biovizBase = citation("biovizBase"),
TxDb.Hsapiens.UCSC.hg19.knownGene = citation("TxDb.Hsapiens.UCSC.hg19.knownGene"),
GenomicRanges = citation("GenomicRanges")[1],
biovizBase = citation("biovizBase")[1],
TxDb.Hsapiens.UCSC.hg19.knownGene = citation("TxDb.Hsapiens.UCSC.hg19.knownGene")[1],
derfinderPlot = citation("derfinderPlot")[1],
grid = citation("grid"),
gridExtra = citation("gridExtra"),
grid = citation("grid")[1],
gridExtra = citation("gridExtra")[1],
mgcv = citation("mgcv")[1],
RColorBrewer = citation("RColorBrewer"),
whisker = citation("whisker"),
RColorBrewer = citation("RColorBrewer")[1],
whisker = citation("whisker")[1],
bumphunter = citation("bumphunter")[1],
pheatmap = citation("pheatmap"),
DESeq2 = citation("DESeq2"),
pheatmap = citation("pheatmap")[1],
DESeq2 = citation("DESeq2")[1],
edgeR1 = citation("edgeR")[1],
edgeR2 = citation("edgeR")[2],
edgeR6 = RefManageR::BibEntry("inbook",
Expand All @@ -111,7 +111,7 @@ bib <- c(
editor = "Datta, Somnath and Nettleton, Dan", publisher = "Springer",
location = "New York", pages = "51-74"
),
DEFormats = citation("DEFormats")
DEFormats = citation("DEFormats")[1]
)
```

Expand Down

0 comments on commit 1715c23

Please sign in to comment.