-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCITATION
29 lines (27 loc) · 978 Bytes
/
CITATION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
pkgVer <- function(pkg) {
if (!exists("meta") || is.null(meta)) meta <- packageDescription(pkg)
ver <- meta$Version
paste0('https://github.com/lcolladotor/biocthis', pkg, ' - R package version ', ver)
}
c(
bibentry(bibtype="manual",
title = "Automate package and project setup for Bioconductor packages",
author = personList(
as.person("Leonardo Collado-Torres")
),
year = format(Sys.Date(), "%Y"),
url = "http://www.bioconductor.org/packages/biocthis",
note = pkgVer('biocthis'),
doi = '10.18129/B9.bioc.biocthis'
),
bibentry(bibtype="article",
title = "Automate package and project setup for Bioconductor packages",
author = personList(
as.person("Leonardo Collado-Torres")
),
year = format(Sys.Date(), "%Y"),
journal = "bioRxiv",
doi = "10.1101/TODO",
url = "https://www.biorxiv.org/content/10.1101/TODO"
)
)