Skip to content

Commit

Permalink
updated citation for the millionith time
Browse files Browse the repository at this point in the history
  • Loading branch information
MicTott committed Dec 2, 2024
1 parent ef122a2 commit 9f16259
Showing 1 changed file with 31 additions and 11 deletions.
42 changes: 31 additions & 11 deletions inst/CITATION
Original file line number Diff line number Diff line change
@@ -1,13 +1,33 @@
citHeader("To cite SpotSweeper in publications, please use the following reference:")
pkgVer <- function(pkg) {
if (!exists("meta") || is.null(meta)) meta <- packageDescription(pkg)
ver <- meta$Version
paste0('https://github.com/MicTott/SpotSweeper/', pkg, ' - R package version ', ver)
}

citEntry(
entry = "Article",
title = "SpotSweeper: spatially-aware quality control for spatial transcriptomics",
author = personList(as.person("Michael Totty"),
as.person("Stephanie Hicks"),
as.person("Boyi Guo")),
journal = "bioRxiv",
year = "2024",
doi = "10.1101/2024.06.06.597765",
textVersion = "Michael Totty, Stephanie Hicks, Boyi Guo (2024). SpotSweeper: spatially-aware quality control for spatial transcriptomics. bioRxiv. doi:10.1101/2024.06.06.597765."
c(
# Manual citation for the package itself
bibentry(bibtype = "manual",
title = "SpotSweeper: spatially-aware quality control for spatial transcriptomics",
author = personList(
as.person("Michael Totty")
),
year = format(Sys.Date(), "%Y"),
url = "http://www.bioconductor.org/packages/SpotSweeper",
note = pkgVer('SpotSweeper'),
doi = "10.18129/B9.bioc.SpotSweeper"
),

# Article citation for a peer-reviewed or preprint article
bibentry(bibtype = "article",
title = "SpotSweeper: spatially-aware quality control for spatial transcriptomics",
author = personList(
as.person("Michael Totty"),
as.person("Stephanie Hicks"),
as.person("Boyi Guo")
),
journal = "bioRxiv",
year = "2024",
doi = "10.1101/2024.06.06.597765",
url = "https://doi.org/10.1101/2024.06.06.597765"
)
)

0 comments on commit 9f16259

Please sign in to comment.