From 86f8e0706d80ce9f4f883bd9cacc87baf65db21e Mon Sep 17 00:00:00 2001 From: cpauvert Date: Wed, 11 Sep 2024 19:15:35 +0200 Subject: [PATCH] add metadata for zenodo repository and integration --- .Rbuildignore | 1 + .zenodo.json | 39 +++++++++++++++++++++++++++++++++++++++ dev/0-dev_history.Rmd | 2 +- 3 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 .zenodo.json diff --git a/.Rbuildignore b/.Rbuildignore index f6c9814..c5f5a17 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -20,3 +20,4 @@ ^revdep$ ^CODE_OF_CONDUCT\.md$ ^CONTRIBUTING\.md$ +^\.zenodo\.json$ diff --git a/.zenodo.json b/.zenodo.json new file mode 100644 index 0000000..b3da65e --- /dev/null +++ b/.zenodo.json @@ -0,0 +1,39 @@ +{ + "creators": [ + { + "orcid": "0000-0001-9832-2507", + "affiliation": "University Hospital of RWTH Aachen", + "name": "Pauvert, Charlie" + }, + { + "affiliation": "University Hospital of RWTH Aachen", + "name": "Nüchtern, Selina" + }, + { + "orcid": "0000-0002-8424-5712", + "affiliation": "University Hospital of RWTH Aachen", + "name": "Wylensek, David" + }, + { + "orcid": "0000-0002-7229-5595", + "affiliation": "University Hospital of RWTH Aachen", + "name": "Clavel, Thomas" + } + ], + + "license": "gpl-3.0-or-later", + + "title": "maldipickr: Dereplicate and Cherry-Pick Mass Spectrometry Spectra", + + "related_identifiers": [ + { + "scheme": "doi", + "identifier": "10.32614/CRAN.package.maldipickr", + "relation": "isSupplementedBy", + "resource_type": "software" + } + ], + + "keywords": ["R", "Rstats", "MALDI-TOF", "MALDI-TOF mass spectrometry", dereplication", "cherry-pick", "R-packages","bacteria", "cultivation"] + +} diff --git a/dev/0-dev_history.Rmd b/dev/0-dev_history.Rmd index c53cb1f..624f44e 100644 --- a/dev/0-dev_history.Rmd +++ b/dev/0-dev_history.Rmd @@ -192,6 +192,6 @@ usethis::use_logo("logo-maldipickr.svg")# later to fix #43 # Ignore files during package build ```{r build_ignore, eval=FALSE} -usethis::use_build_ignore(c("_pkgdown.yml", "docs", "pkgdown", "processed", "codecov.yml", "CONTRIBUTING.md")) +usethis::use_build_ignore(c("_pkgdown.yml", "docs", "pkgdown", "processed", "codecov.yml", "CONTRIBUTING.md", ".zenodo.json")) ```