Skip to content

Commit

Permalink
Add a citation file with biocthis::use_bioc_citation()
Browse files Browse the repository at this point in the history
  • Loading branch information
lcolladotor committed Jul 19, 2024
1 parent 15ee4b0 commit fe7d9d5
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
pkgVer <- function(pkg) {
if (!exists("meta") || is.null(meta)) meta <- packageDescription(pkg)
ver <- meta$Version
paste0('https://github.com/LieberInstitute/visiumStitched/', pkg, ' - R package version ', ver)
}

c(

bibentry(bibtype="manual",
title = "Helper package for working with stitched overlapping Visium capture areas",
author = personList(
as.person("Nicholas J. Eagles"),
as.person("Leonardo Collado-Torres")
),
year = format(Sys.Date(), "%Y"),
url = "http://www.bioconductor.org/packages/visiumStitched",
note = pkgVer('visiumStitched'),
doi = '10.18129/B9.bioc.visiumStitched'
),
bibentry(bibtype="article",
title = "visiumStitched",
author = personList(
as.person("Nicholas J. Eagles"),
as.person("Svitlana Bach"),
as.person("Madhavi Tippani"),
as.person("Yufeng Du"),
as.person("Thomas M. Hyde"),
as.person("Stephanie C. Page"),
as.person("Keri Martinowich"),
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"
)
)

0 comments on commit fe7d9d5

Please sign in to comment.