Skip to content

Commit 10fe519

Browse files
authored
Merge pull request #245 from ESHackathon/dev
Update from Dev
2 parents 17c4dea + ec2b26c commit 10fe519

7 files changed

Lines changed: 271 additions & 128 deletions

File tree

CITATION.cff

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software, please cite it as below."
3+
authors:
4+
- family-names: "Riley"
5+
given-names: "Trevor N."
6+
orcid: "https://orcid.org/0000-0002-6834-9802"
7+
- family-names: "Young"
8+
given-names: "Sarah"
9+
orcid: "https://orcid.org/0000-0002-8301-5106"
10+
- family-names: "Paxton"
11+
given-names: "Avery B."
12+
orcid: "https://orcid.org/0000-0002-4871-9167"
13+
- family-names: "Wallrich"
14+
given-names: "Lukas"
15+
orcid: "https://orcid.org/0000-0003-2121-5177"
16+
- family-names: "Hair"
17+
given-names: "Kaitlyn"
18+
orcid: "https://orcid.org/0000-0003-0180-7343"
19+
- family-names: "Grainger"
20+
given-names: "Matthew J."
21+
orcid: "https://orcid.org/0000-0001-8426-6495"
22+
title: "CiteSource: An R Package for Data-Driven Search Strategy Development and Enhanced Evidence Synthesis Reporting"
23+
version: 0.1.1
24+
doi: TBD
25+
url: "https://github.com/ESHackathon/CiteSource"
26+
preferred-citation:
27+
type: article
28+
authors:
29+
- family-names: "Riley"
30+
given-names: "Trevor N."
31+
- family-names: "Young"
32+
given-names: "Sarah"
33+
- family-names: "Paxton"
34+
given-names: "Avery B."
35+
- family-names: "Wallrich"
36+
given-names: "Lukas"
37+
- family-names: "Hair"
38+
given-names: "Kaitlyn"
39+
- family-names: "Grainger"
40+
given-names: "Matthew J."
41+
title: "CiteSource: An R Package for Data-Driven Search Strategy Development and Enhanced Evidence Synthesis Reporting"
42+
journal: "Research Synthesis Methods"
43+
year: 2026
44+
doi: https://doi.org/10.1017/rsm.2026.10084

DESCRIPTION

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: CiteSource
2-
Title: Analyze the Utility of Information Sources and Retrieval Methodologies for Evidence Synthesis
2+
Title: An R package for data-driven search strategy development and enhanced evidence synthesis reporting
33
Version: 0.1.1
44
Date: 2023-06-22
55
Authors@R: c(
@@ -60,9 +60,8 @@ Suggests:
6060
progressr,
6161
shinybusy,
6262
shinyWidgets,
63-
testthat (>= 3.0.0)
64-
Additional_repositories:
65-
https://github.com/camaradesuk/ASySD
63+
testthat (>= 3.0.0),
64+
plogr
6665
VignetteBuilder:
6766
knitr
6867
Config/testthat/edition: 3
@@ -72,4 +71,5 @@ RoxygenNote: 7.2.3
7271
Depends:
7372
R (>= 3.5.0)
7473
Remotes:
75-
camaradesuk/ASySD
74+
camaradesuk/ASySD,
75+
plogr=url::https://cran.r-project.org/src/contrib/Archive/plogr/plogr_0.2.0.tar.gz

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44

55
<!-- badges: start -->
66
[![R-CMD-check](https://github.com/ESHackathon/CiteSource/workflows/R-CMD-Check/badge.svg)](https://github.com/ESHackathon/CiteSource/actions)
7-
[![Status](https://img.shields.io/badge/Status-Work%20in%20Progress-orange)](https://github.com/ESHackathon/CiteSource)
7+
[![Status](https://img.shields.io/badge/Status-Active-brightgreen)](https://github.com/ESHackathon/CiteSource)
88
[![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://www.gnu.org/licenses/gpl-3.0)
9+
[![DOI](https://img.shields.io/badge/DOI-10.1038/s41586--020--2649--2-blue)](https://doi.org/10.1017/rsm.2026.10084)
910
<!-- badges: end -->
1011

1112
## About the Package
@@ -20,6 +21,10 @@ Development of this project began as part of the Evidence Synthesis Hackathon an
2021

2122
CiteSource was created under [the General Public License (>=v3)](https://www.gnu.org/licenses/gpl-3.0.html).
2223

24+
**Citing CiteSource**
25+
26+
Riley, T. N., Young, S., Paxton, A. B., Wallrich, L., Hair, K., & Grainger, M. J. (2026). CiteSource: An R Package for Data-Driven Search Strategy Development and Enhanced Evidence Synthesis Reporting. Research Synthesis Methods. (DOI/PUBLICATION FORTHCOMING)
27+
2328
**Shiny Web Application**
2429

2530
Whether you know R or not, we want you to be able to use CiteSource! Check out our [CiteSource Shiny App!](https://litrev.shinyapps.io/CiteSource/)

inst/shiny-app/CiteSource/app.R

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,11 +385,19 @@ ui <- shiny::navbarPage("CiteSource",
385385
shiny::h6("Note that you can only download the data after you have run the deduplication. Also, you are only able to re-upload CSV and RIS files to continue with CiteSource, so please use these formats if you want that option."),
386386
shiny::downloadButton("downloadCsv", "Download csv"),
387387
shiny::downloadButton("downloadRis", "Download RIS"),
388-
shiny::downloadButton("downloadBib", "Download BibTex")
388+
shiny::downloadButton("downloadBib", "Download BibTex"),
389+
shiny::hr(),
390+
shiny::wellPanel(
391+
shiny::h5("Cite CiteSource"),
392+
shiny::p("If you use these results in a publication, please cite the software:"),
393+
shiny::tags$code("Riley, T., Young, S., Paxton, A., Wallrich, L., Hair, K., & Grainger, M. (2026). CiteSource: An R package for data-driven search strategy development and enhanced evidence synthesis reporting. Research Synthesis Methods. https://doi.org/10.1017/rsm.2026.10084"),
394+
shiny::br(),
395+
shiny::a("View Publication", href = "https://doi.org/10.1017/rsm.2026.10084", target = "_blank")
389396
)
390397
)
391398
)
392399
)
400+
)
393401
)
394402

395403

inst/shiny-app/CiteSource/www/about.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,13 @@ CiteSource was developed as part of the [Evidence Synthesis Hackathon](https://w
99

1010
---
1111

12+
### How to Cite
13+
If you use CiteSource in your research, please cite the following publication:
14+
15+
Riley, T., Young, S., Paxton, A., Wallrich, L., Hair, K., & Grainger, M. (2026). CiteSource: An R package for data-driven search strategy development and enhanced evidence synthesis reporting. Research Synthesis Methods. https://doi.org/10.1017/rsm.2026.10084
16+
17+
---
18+
1219
### Key Features:
1320

1421
<details>

0 commit comments

Comments
 (0)