Skip to content

Commit d07fd22

Browse files
add doi in citation file
1 parent 69787a4 commit d07fd22

5 files changed

Lines changed: 22 additions & 6 deletions

File tree

.github/workflows/mirror-codeberg.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ jobs:
1414
fetch-depth: 0
1515
- uses: yesolutions/mirror-action@master
1616
with:
17-
REMOTE: https://codeberg.org/OxfordIHTM/aurora
17+
REMOTE: https://codeberg.org/oxford-ihealth/aurora
1818
GIT_USERNAME: ${{ secrets.CODEBERG_USERNAME }}
1919
GIT_PASSWORD: ${{ secrets.CODEBERG_TOKEN }}

CITATION.cff

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ type: software
99
license: GPL-3.0-or-later
1010
title: 'aurora: Interface to the Oxford University Research Archive'
1111
version: 0.0.0.9000
12+
doi: 10.5281/zenodo.18452028
1213
identifiers:
1314
- type: url
1415
value: http://oxford-ihtm.io/aurora/
@@ -33,6 +34,7 @@ preferred-citation:
3334
year: '2024'
3435
notes: R package version 0.0.9000
3536
url: https://oxford-ihtm.io/aurora/
37+
doi: 10.5281/zenodo.18452028
3638
repository-code: https://github.com/OxfordIHTM/aurora
3739
url: https://oxford-ihtm.io/aurora/
3840
contact:
@@ -47,6 +49,17 @@ keywords:
4749
- r
4850
- rstats
4951
references:
52+
- type: software
53+
title: 'R: A Language and Environment for Statistical Computing'
54+
notes: Depends
55+
url: https://www.R-project.org/
56+
authors:
57+
- name: R Core Team
58+
institution:
59+
name: R Foundation for Statistical Computing
60+
address: Vienna, Austria
61+
year: '2026'
62+
version: '>= 4.1.0'
5063
- type: software
5164
title: dplyr
5265
abstract: 'dplyr: A Grammar of Data Manipulation'

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ knitr::opts_chunk$set(
2222
[![test-coverage](https://github.com/OxfordIHTM/aurora/actions/workflows/test-coverage.yaml/badge.svg)](https://github.com/OxfordIHTM/aurora/actions/workflows/test-coverage.yaml)
2323
[![Codecov test coverage](https://codecov.io/gh/OxfordIHTM/aurora/graph/badge.svg)](https://app.codecov.io/gh/OxfordIHTM/aurora)
2424
[![CodeFactor](https://www.codefactor.io/repository/github/oxfordihtm/aurora/badge)](https://www.codefactor.io/repository/github/oxfordihtm/aurora)
25-
[![DOI](https://zenodo.org/badge/741887517.svg)](https://zenodo.org/badge/latestdoi/741887517)
25+
[![DOI](https://zenodo.org/badge/741887517.svg)](https://doi.org/10.5281/zenodo.18452028)
2626
<!-- badges: end -->
2727

2828
The [Oxford University Research Archive (ORA)](https://ora.ox.ac.uk/) is an Open Access platform and is the institutional repository for the [University of Oxford](https://ox.ac.uk). ORA serves as a permanent and secure online archive of research materials produced by members of the University of Oxford. ORA supports and participates in the Open Archives Initiative (OAI). ORA is a registered OAI-PMH data-provider and provides metadata for all public records which is updated as soon as each record is published or updated. ORA also provides API access to its resources. This package provides low level functions to interface with the [ORA API](https://ora.ox.ac.uk/api).

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](h
1515
[![Codecov test
1616
coverage](https://codecov.io/gh/OxfordIHTM/aurora/graph/badge.svg)](https://app.codecov.io/gh/OxfordIHTM/aurora)
1717
[![CodeFactor](https://www.codefactor.io/repository/github/oxfordihtm/aurora/badge)](https://www.codefactor.io/repository/github/oxfordihtm/aurora)
18-
[![DOI](https://zenodo.org/badge/741887517.svg)](https://zenodo.org/badge/latestdoi/741887517)
18+
[![DOI](https://zenodo.org/badge/741887517.svg)](https://doi.org/10.5281/zenodo.18452028)
1919
<!-- badges: end -->
2020

2121
The [Oxford University Research Archive (ORA)](https://ora.ox.ac.uk/) is
@@ -83,8 +83,9 @@ citation("aurora")
8383
#> To cite aurora in publications use:
8484
#>
8585
#> Ernest Guevarra (2024). _aurora: Interface to the Oxford University
86-
#> Research Archive (ORA) API_. R package version 0.0.9000,
87-
#> <https://oxford-ihtm.io/aurora/>.
86+
#> Research Archive (ORA) API_. doi:10.5281/zenodo.18452028
87+
#> <https://doi.org/10.5281/zenodo.18452028>, R package version
88+
#> 0.0.9000, <https://oxford-ihtm.io/aurora/>.
8889
#>
8990
#> A BibTeX entry for LaTeX users is
9091
#>
@@ -94,6 +95,7 @@ citation("aurora")
9495
#> year = {2024},
9596
#> note = {R package version 0.0.9000},
9697
#> url = {https://oxford-ihtm.io/aurora/},
98+
#> doi = {10.5281/zenodo.18452028},
9799
#> }
98100
```
99101

inst/CITATION

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@ bibentry(
55
author = person("Ernest Guevarra"),
66
year = "2024",
77
note = "R package version 0.0.9000",
8-
url = "https://oxford-ihtm.io/aurora/"
8+
url = "https://oxford-ihtm.io/aurora/",
9+
doi = "10.5281/zenodo.18452028"
910
)

0 commit comments

Comments
 (0)